Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR test #1

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
16 changes: 16 additions & 0 deletions codacy-ios.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
C245C4CE253C41B800B425F0 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C245C4CD253C41B800B425F0 /* Assets.xcassets */; };
C245C4D1253C41B800B425F0 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C245C4CF253C41B800B425F0 /* LaunchScreen.storyboard */; };
C245C4DC253C41B800B425F0 /* codacy_iosTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C245C4DB253C41B800B425F0 /* codacy_iosTests.swift */; };
C245C4E9253C4AEE00B425F0 /* CodacyTestFeatureViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C245C4E7253C4AEE00B425F0 /* CodacyTestFeatureViewController.swift */; };
C245C4EA253C4AEE00B425F0 /* CodacyTestFeatureViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = C245C4E8253C4AEE00B425F0 /* CodacyTestFeatureViewController.xib */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
Expand All @@ -38,6 +40,8 @@
C245C4D7253C41B800B425F0 /* codacy-iosTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = "codacy-iosTests.xctest"; sourceTree = BUILT_PRODUCTS_DIR; };
C245C4DB253C41B800B425F0 /* codacy_iosTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = codacy_iosTests.swift; sourceTree = "<group>"; };
C245C4DD253C41B800B425F0 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C245C4E7253C4AEE00B425F0 /* CodacyTestFeatureViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CodacyTestFeatureViewController.swift; sourceTree = "<group>"; };
C245C4E8253C4AEE00B425F0 /* CodacyTestFeatureViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = CodacyTestFeatureViewController.xib; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -79,6 +83,7 @@
C245C4C3253C41B700B425F0 /* codacy-ios */ = {
isa = PBXGroup;
children = (
C245C4E6253C4ACB00B425F0 /* CodacyTestFeature */,
C245C4C4253C41B700B425F0 /* AppDelegate.swift */,
C245C4C6253C41B700B425F0 /* SceneDelegate.swift */,
C245C4C8253C41B700B425F0 /* ViewController.swift */,
Expand All @@ -99,6 +104,15 @@
path = "codacy-iosTests";
sourceTree = "<group>";
};
C245C4E6253C4ACB00B425F0 /* CodacyTestFeature */ = {
isa = PBXGroup;
children = (
C245C4E7253C4AEE00B425F0 /* CodacyTestFeatureViewController.swift */,
C245C4E8253C4AEE00B425F0 /* CodacyTestFeatureViewController.xib */,
);
path = CodacyTestFeature;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
Expand Down Expand Up @@ -182,6 +196,7 @@
files = (
C245C4D1253C41B800B425F0 /* LaunchScreen.storyboard in Resources */,
C245C4CE253C41B800B425F0 /* Assets.xcassets in Resources */,
C245C4EA253C4AEE00B425F0 /* CodacyTestFeatureViewController.xib in Resources */,
C245C4CC253C41B700B425F0 /* Main.storyboard in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand All @@ -202,6 +217,7 @@
files = (
C245C4C9253C41B700B425F0 /* ViewController.swift in Sources */,
C245C4C5253C41B700B425F0 /* AppDelegate.swift in Sources */,
C245C4E9253C4AEE00B425F0 /* CodacyTestFeatureViewController.swift in Sources */,
C245C4C7253C41B700B425F0 /* SceneDelegate.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
Expand Down
Binary file not shown.
27 changes: 27 additions & 0 deletions codacy-ios/CodacyTestFeature/CodacyTestFeatureViewController.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
//
// CodacyTestFeatureViewController.swift
// codacy-ios
//
// Created by Mirza Muharemovic on 14/10/2020.
// Copyright © 2020 Mirza Muharemovic. All rights reserved.
//

import UIKit

class CodacyTestFeatureViewController: UIViewController {
var x = 0
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

override func viewDidLoad() {
super.viewDidLoad()

Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

x = 2 * x + 1
x = 2 * x + 1
x = 2 * x + 1
x = 2 * x + 1


Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

//Slack test
//Slack test2

x = x - 1
}
}
22 changes: 22 additions & 0 deletions codacy-ios/CodacyTestFeature/CodacyTestFeatureViewController.xib
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="3.0" toolsVersion="13142" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<dependencies>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="12042"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
</dependencies>
<objects>
<placeholder placeholderIdentifier="IBFilesOwner" id="-1" userLabel="File's Owner" customClass="CodacyTestFeatureViewController" customModuleProvider="target">
<connections>
<outlet property="view" destination="i5M-Pr-FkT" id="sfx-zR-JGt"/>
</connections>
</placeholder>
<placeholder placeholderIdentifier="IBFirstResponder" id="-2" customClass="UIResponder"/>
<view clearsContextBeforeDrawing="NO" contentMode="scaleToFill" id="i5M-Pr-FkT">
<rect key="frame" x="0.0" y="0.0" width="375" height="667"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
<color key="backgroundColor" systemColor="systemBackgroundColor" cocoaTouchSystemColor="whiteColor"/>
<viewLayoutGuide key="safeArea" id="fnl-2z-Ty3"/>
</view>
</objects>
</document>