xcfit 3.1.5 → 3.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +2 -1
- data/Pre-Defined_Steps/Cucumberish_Predefined_Steps.md +12 -0
- data/Pre-Defined_Steps/XCFit_Predefined_Steps.md +49 -0
- data/README.md +53 -31
- data/XCFit.podspec +1 -1
- data/XCFit4Demo/Cartfile +1 -0
- data/XCFit4Demo/Cartfile.resolved +2 -0
- data/XCFit4Demo/XCFit4Demo.xcodeproj/project.pbxproj +864 -0
- data/XCFit4Demo/XCFit4Demo.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/XCFit4Demo/XCFit4Demo/AppDelegate.swift +46 -0
- data/XCFit4Demo/XCFit4Demo/Assets.xcassets/AppIcon.appiconset/Contents.json +38 -0
- data/XCFit4Demo/XCFit4Demo/Base.lproj/LaunchScreen.storyboard +27 -0
- data/XCFit4Demo/XCFit4Demo/Base.lproj/Main.storyboard +53 -0
- data/XCFit4Demo/XCFit4Demo/Info.plist +38 -0
- data/XCFit4Demo/XCFit4Demo/ViewController.swift +33 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/BaseScreen.swift +21 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/CommonStepDefinitions.swift +89 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/Extensions.swift +57 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/Features/demo.feature +8 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/HomeScreen.swift +24 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/HomeScreenSteps.swift +29 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/Hooks.swift +27 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/Info.plist +22 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/XCFit4DemoCucumberTests-Bridging-Header.h +17 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/XCFit4DemoCucumberTests.h +22 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/XCFit4DemoCucumberTests.m +27 -0
- data/XCFit4Demo/XCFit4DemoCucumberTests/XCFit4DemoCucumberTests.swift +39 -0
- data/XCFit4Demo/XCFit4DemoTests/Info.plist +22 -0
- data/XCFit4Demo/XCFit4DemoTests/XCFit4DemoTests.swift +36 -0
- data/XCFit4Demo/XCFit4DemoXCUIPoMTests/Extensions.swift +60 -0
- data/XCFit4Demo/XCFit4DemoXCUIPoMTests/HomeScreen.swift +23 -0
- data/XCFit4Demo/XCFit4DemoXCUIPoMTests/HomeScreenTest.swift +28 -0
- data/XCFit4Demo/XCFit4DemoXCUIPoMTests/Info.plist +22 -0
- data/XCFit4Demo/XCFit4DemoXCUIPoMTests/XCFit4DemoXCUIPoMTestsTestBase.swift +36 -0
- data/homebrew/xcfit +1 -1
- data/lib/XCFit/version.rb +1 -1
- metadata +33 -6
- data/Docs/InitialVersion.md +0 -340
- data/Docs/README_XCFit2.md +0 -572
- data/Docs/Xcode7.md +0 -273
- data/Docs/xcdoe7swift2.md +0 -311
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03ea23a51bb91cc810c67d28294ad2a0188cc574
|
4
|
+
data.tar.gz: c2e8eedf6724b762d8e8e8a148105e2302303b5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c84c8cb77d17c608b2fafd89e8dad78545776d00cff59b622458551c3230fe0f0a78459471b04ed2974fdf7998c61e60a1ebbc23ecbaaaed54a37cb10fc27891
|
7
|
+
data.tar.gz: 9ec5a8376e257c62cddf27b317af0a2b0277b715d21f82c84fa5a83e14ec14d16a1a8a9054f876c1dd7e6965a80738df6c00d99d44dd4308dc0ca7222b005621
|
data/.travis.yml
CHANGED
@@ -0,0 +1,12 @@
|
|
1
|
+
# Predefined BDD Steps for the Cucumber
|
2
|
+
|
3
|
+
|
4
|
+
There are some predefined BDD Style Steps for the Cucumberish
|
5
|
+
|
6
|
+
|
7
|
+
|
8
|
+
Given the app is running
|
9
|
+
Given/When/Then/ I tap (?:the )?\"([^\\\"]*)\" (button|label|tab|view|field|textView
|
10
|
+
Given/When/Then/ I tap (?:the )?\"([^\\\"]*)\" (button|label|tab|view) ([1-9]{1}) time(?:s)?$
|
11
|
+
Given/When/Then/ I write \"([^\\\"]*)\" (?:into|in) (?:the )?\"([^\\\"]*)\" (field|text view)$
|
12
|
+
Given/When/Then/ I switch (on|off) the \"([^\\\"]*)\" switch$
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# Predefined BDD Style Step for XCFit
|
2
|
+
|
3
|
+
The XCFit predefined Steps are grouped by
|
4
|
+
|
5
|
+
* Application Launcher Steps
|
6
|
+
* User Actions
|
7
|
+
* Waiter Actions
|
8
|
+
* Assertions
|
9
|
+
|
10
|
+
XCUIElement value needs to be replaced by locator from your Application.Some of the values of String also need to replaced.
|
11
|
+
|
12
|
+
## Application launcher Steps
|
13
|
+
|
14
|
+
givenILaunchedApplication()
|
15
|
+
whenITerminatedApplication()
|
16
|
+
givenILaunchedApplicationWithArguments(launchArguments: [[String]] = [])
|
17
|
+
|
18
|
+
## User Actions
|
19
|
+
|
20
|
+
whenITap(on element: XCUIElement)
|
21
|
+
whenIDoubleTapOn(XCUIElement)
|
22
|
+
whenItypeTextIntoTextField(textField: XCUIElement, text: String)
|
23
|
+
whenIActOnAlert(alertTitle: String, alertButton: String)
|
24
|
+
whenIAllowSystemAlert(alertDescription: String)
|
25
|
+
whenISlideASlider(by normalisedValue: CGFloat)
|
26
|
+
whenISelectAItemFromPicker(item: CGFloat)
|
27
|
+
whenIClickLinkFromWebView(linkText: String)
|
28
|
+
whenIPressElementForDuration(XCUIElement, duration: TimeInterval)
|
29
|
+
whenIPressOnElementAndDragToOtherElement(_ element: XCUIElement, destinationElement: XCUIElement, duration: TimeInterval)
|
30
|
+
whenIClickElementForDuration(_ element: XCUIElement, duration: TimeInterval)
|
31
|
+
whenIClickOnElementAndDragToOtherElement(_ element: XCUIElement, destinationElement: XCUIElement, duration: TimeInterval)
|
32
|
+
|
33
|
+
## Waiter Actions
|
34
|
+
|
35
|
+
whenIexpectElementToAppear(XCUIElement)
|
36
|
+
whenIexpectElementTimeOut(XCUIElement)
|
37
|
+
whenIexpectElementIncorrectOrder(XCUIElement)
|
38
|
+
whenIexpectElementInvertedFulfillment(XCUIElement)
|
39
|
+
|
40
|
+
## Assertions
|
41
|
+
|
42
|
+
thenIShouldSee(XCUIElement)
|
43
|
+
thenElemenShouldHavePlaceholderValue(XCUIElement, String)
|
44
|
+
thenElementShouldHaveTitle(XCUIElement, String)
|
45
|
+
thenElementShouldBeEnabled(XCUIElement)
|
46
|
+
thenElementShouldBeVisible(XCUIElement)
|
47
|
+
thenElementShouldBeHittable(XCUIElement)
|
48
|
+
thenElementShouldSelected(XCUIElement)
|
49
|
+
thenIShouldSeeAnAlert()
|
data/README.md
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
[![License](https://img.shields.io/cocoapods/l/XCFit.svg?style=flat)](http://cocoapods.org/pods/XCFit)
|
4
4
|
[![Platform](https://img.shields.io/cocoapods/p/XCFit.svg?style=flat)](http://cocoapods.org/pods/XCFit)
|
5
5
|
|
6
|
-
# XCFit : Full Stack BDD in Xcode
|
6
|
+
# XCFit : Full Stack iOS BDD in Xcode
|
7
7
|
|
8
8
|
**XCFit a.k.a ([XCUI](https://developer.apple.com/videos/play/wwdc2015/406/0), [Cucumberish](https://github.com/Ahmed-Ali/Cucumberish) and [Fitnesse](https://github.com/paulstringer/OCSlimProject) Integrations Tests) is a full stack Xcode BDD framework for [Swift](https://swift.org) iOS apps. XCFit allows us to write BDD Style API/Contract level, UI and Acceptance Tests with Swift in human readable language using tools like [Cucumber](https://cucumber.io/) and [Fitnesse](http://fitnesse.org/) in Xcode. We can still use Apple's brand new UI Testing framework (XCUI) under the hood of XCFit and Cucumberish. XCFit is fully automated solution for Cucumberish and Fitnesse. You can use 80(Fitnesse):20(Cucumberish) formula to automate Acceptance and UI Testing for better coverage and faster feedback. XCFit is available on [Homebrew](http://brew.sh), [RubyGem](https://rubygems.org/gems/xcfit), [CocoaPods](http://cocoadocs.org/docsets/XCFit), Carthage and Swift Package Manager.**
|
9
9
|
|
@@ -14,7 +14,6 @@
|
|
14
14
|
* [XCFit Features](#xcfit-features)
|
15
15
|
* [Tech & Software Requirements](#tech--software-requirements)
|
16
16
|
* [Installation](#installation)
|
17
|
-
* [Setup Xcode Templates](#setup-xcode-templates)
|
18
17
|
* [XCFit Swift Framework](#xcfit-swift-framework--xcui-page-object-pattern--pre-defined-steps)
|
19
18
|
* [Setting Cucumberish BDD Scenarios in Xcode](#setting-cucumberish-bdd-scenarios-in-xcode)
|
20
19
|
* [Fitnesse for iOS: Acceptance/Contract Tests](#fitnesse-for-ios-acceptancecontract-tests)
|
@@ -85,12 +84,10 @@ You must have Mac Operating System with OSX/MacOS Sierra.
|
|
85
84
|
* **[Curl on Mac](https://developer.apple.com/legacy/library/documentation/Darwin/Reference/ManPages/man1/curl.1.html)**
|
86
85
|
- Might be pre-installed but worth double checking.
|
87
86
|
* **[Homebrew](http://brew.sh)**
|
88
|
-
* **
|
89
|
-
- Node Package required to launch iOS app for Fitnesse Acceptance tests.
|
90
|
-
* [**Java**](https://www.java.com/en/)
|
91
|
-
- Java should be installed on Mac, it is required for Fitnesse Acceptance Test
|
92
|
-
* **Ruby Packages(optional)**
|
87
|
+
* **RubyGems Packages(optional)**
|
93
88
|
- Xcpretty, Fastlane(Optional), Rake, Bundler etc
|
89
|
+
* **Fitnesse only Optional** : You might need to have [iOS-Sim](https://www.npmjs.com/package/ios-sim), [Java](https://www.java.com/en/) if you want to use Fitnesse.
|
90
|
+
|
94
91
|
|
95
92
|
---
|
96
93
|
|
@@ -117,7 +114,7 @@ XCFit can be installed using [Homebrew](http://brew.sh) or using [RubyGems](http
|
|
117
114
|
|
118
115
|
XCFit templates can be installed using Homebrew or Rubygem.
|
119
116
|
|
120
|
-
|
117
|
+
#### Homebrew Installation
|
121
118
|
|
122
119
|
Assuming you have already installed [Homebrew](http://brew.sh). Let's tap the formula
|
123
120
|
|
@@ -129,7 +126,7 @@ Now, we can install XCFit brew package using
|
|
129
126
|
|
130
127
|
This will download XCFit templates.
|
131
128
|
|
132
|
-
|
129
|
+
#### XCFit RubyGem Installation
|
133
130
|
If you can't use HomeBrew for some reason then XCFit can be installed using [RubyGems](https://rubygems.org/). This will set our Xcode for BDD
|
134
131
|
|
135
132
|
$ gem install xcfit
|
@@ -139,9 +136,7 @@ You need to use with 'sudo' if you are using system (pre-installed) Ruby(2.0). X
|
|
139
136
|
You can choose any of the above method. Rubygems method is prefered.
|
140
137
|
|
141
138
|
|
142
|
-
|
143
|
-
|
144
|
-
# Setup Xcode Templates
|
139
|
+
### Setup Xcode Templates
|
145
140
|
|
146
141
|
In existing app or brand new app, we have to enable the Xcode templates for targets to speed up the things.
|
147
142
|
##### Xcode 8
|
@@ -168,7 +163,10 @@ You will see new option for iOS i.e 'XCFit'. Once Clicked on it. You will see Cu
|
|
168
163
|
|
169
164
|
## Framework Installation
|
170
165
|
|
171
|
-
XCFit, Cucumberish or OCSlimProject Framework can be installed using Cocoapods. XCFit and Cuucmberish can be installed using Carthage as well
|
166
|
+
XCFit, Cucumberish or OCSlimProject Framework can be installed using Cocoapods. XCFit and Cuucmberish can be installed using Carthage as well
|
167
|
+
|
168
|
+
### Cocoapods
|
169
|
+
Cocoapods is more automated than Carthage. We can create `Podfile` and add specific dependency for the target
|
172
170
|
|
173
171
|
```ruby
|
174
172
|
target '$_YOUR__TARGET' do
|
@@ -183,6 +181,37 @@ $ pod install
|
|
183
181
|
|
184
182
|
You need to close the existing Xcode session and Xcode Workspace .xcworkspace next time.
|
185
183
|
|
184
|
+
### Carthage
|
185
|
+
|
186
|
+
XCFit and Cucumberish can be installed as Cartahge. We need to create `Cartfile` with following content
|
187
|
+
|
188
|
+
github "Shashikant86/XCFit"
|
189
|
+
|
190
|
+
Now, we can fetch and build Carthage Dependencies using following command.
|
191
|
+
|
192
|
+
$ carthage update --platform iOS
|
193
|
+
|
194
|
+
This will checkout and build XCFit and Cucumberish frameworks then we can manaully drag those frameworks in the `Build Phases` of the test targets. This is explained in details in the later section.
|
195
|
+
|
196
|
+
### Swift Package Manager
|
197
|
+
|
198
|
+
XCFit can be installed with Swift Package Manager however Swift Package Manager isn't officially supported for iOS so we can use XCFit only for the standalone Libraries. We need to create `Package.swift` file with following content.
|
199
|
+
```
|
200
|
+
import PackageDescription
|
201
|
+
|
202
|
+
let package = Package(
|
203
|
+
name: "XCFit",
|
204
|
+
dependencies: [
|
205
|
+
.Package(url: "https://github.com/Shashikant86/XCFit.git", majorVersion: 4.0.0),
|
206
|
+
]
|
207
|
+
)
|
208
|
+
```
|
209
|
+
Now we can use fetch XCFit using
|
210
|
+
|
211
|
+
$ swift package fetch
|
212
|
+
We can build, test package using the commnds avavilable for the Swift Package Manager.
|
213
|
+
|
214
|
+
|
186
215
|
|
187
216
|
---
|
188
217
|
# XCFit Swift Framework : XCUI Page Object Pattern + Pre-Defined Steps
|
@@ -411,7 +440,8 @@ Once drag and drop is don and we have "Features" directory then we are ready to
|
|
411
440
|
|
412
441
|
# Fitnesse for iOS: Acceptance/Contract Tests
|
413
442
|
|
414
|
-
|
443
|
+
If you really wanted to get more information about Fitnnese for iOS, please follow documentation on [OCSlim](http://paulstringer.github.io/OCSlimProject/) project. XCFit adopted the framework as dependeny to make it full stack BDD and might not be able to keep up with that for long. It's worth navigate to [OCSlim Project](http://paulstringer.github.io/OCSlimProject/) from this point but I will cover basic setup here.
|
444
|
+
[Fitnesse](http://fitnesse.org/) is fully integrated standalone wiki and acceptance testing framework for BDD Style testing. As of now we have seen Cucumber and Page Object pattern test frameworks. We will cover basic setup as part of this document.
|
415
445
|
Before get started make sure, you have Fitnesse Xcode templates installed
|
416
446
|
|
417
447
|
|
@@ -427,16 +457,14 @@ $ xcfit setup_fitnesse_templates
|
|
427
457
|
|
428
458
|
- Once Clicked on the target e.g 'OS Acceptance Tests' Xcode will create new target with all required files and groups for Acceptance testing
|
429
459
|
|
430
|
-
- Select 'Acceptance Test' Scheme from Xcode and try to build
|
460
|
+
- Select 'Acceptance Test' Scheme from Xcode and try to build by pressing CMD+B
|
431
461
|
|
432
|
-
- The build
|
462
|
+
- The build might fail as we need fix some **Swift3** related issue as well as we need to add **XCFit/OCSlimProject** Pod to the to the podfile.
|
433
463
|
|
434
|
-
** Watch it so far**
|
435
464
|
|
436
|
-
![image](https://github.com/Shashikant86/XCFit-GIFS/blob/master/AcceptanceTestsTarget.gif)
|
437
465
|
|
438
466
|
1. To Fix Swift Issue : Just Click on ‘Edit-> Convert-> To Current Swift Syntax
|
439
|
-
2. To Fix Pod issue : Add '
|
467
|
+
2. To Fix Pod issue : Add 'OCSlimProject' for AcceptanceTests target
|
440
468
|
|
441
469
|
```ruby
|
442
470
|
target 'AcceptanceTests' do
|
@@ -458,7 +486,7 @@ You should also note that, the script 'Launch Fitnesse' has been created in the
|
|
458
486
|
|
459
487
|
The browser will popup with example test. You should be able to excute that suite and see then running and passing
|
460
488
|
|
461
|
-
![image](https://github.com/Shashikant86/
|
489
|
+
![image](https://github.com/Shashikant86/xcfitgif/blob/master/FitnesseAcceptance.gif)
|
462
490
|
|
463
491
|
If you get any errors at this stage, please confirm that you have Java as well as ios-sim node package installed.
|
464
492
|
|
@@ -505,11 +533,11 @@ Now we can see that FitNesse tests are running as shown above. We can add this
|
|
505
533
|
|
506
534
|
# Continuous Integration with Xcode Server
|
507
535
|
|
508
|
-
|
536
|
+
You can read my detailed blog on how to setup Xcode Server for XCFit package on Dzone [Xcode Continuous Integration with Xcode Server](https://dzone.com/articles/xcode-continuous-integration-with-macos-server)
|
509
537
|
|
510
538
|
# XCFit: Swift Package Manager
|
511
539
|
|
512
|
-
XCFit will be having full on support for XCUI Test helpers so that we can use Apple's XCUI Test Framework painless to use. There is [sample swift package](https://github.com/Shashikant86/XCFitDemoSwiftPackage) on Github to test XCFit
|
540
|
+
Swift Package Manager doesn't officially support iOS projects (Xcode Templates) but We can use it for building packages. XCFit will be having full on support for XCUI Test helpers so that we can use Apple's XCUI Test Framework painless to use. There is [sample swift package](https://github.com/Shashikant86/XCFitDemoSwiftPackage) on Github to test XCFit
|
513
541
|
Full Documetation and API implementation still in progress. You can grab it like this
|
514
542
|
|
515
543
|
```
|
@@ -530,16 +558,10 @@ let package = Package(
|
|
530
558
|
You can clone the existing repo which has a demo app we can run Unit, Fitnesse and Cucumbertish Tests as XCTest
|
531
559
|
```
|
532
560
|
$ git clone https://github.com/Shashikant86/XCFit
|
533
|
-
$ cd XCFit/
|
534
|
-
$ open
|
535
|
-
```
|
536
|
-
Run Unit, Fitnesse and Cucumberish test with Xcode. "cmd + U". We can execute it using Fastlane
|
537
|
-
|
538
|
-
|
561
|
+
$ cd XCFit/XCFit4Demo
|
562
|
+
$ open XCFit4Demo.xcodeproj/
|
539
563
|
```
|
540
|
-
|
541
|
-
$ bundle exec fastlane xcfit_ui_test
|
542
|
-
```
|
564
|
+
Run XCUI and Cucumberish test with Xcode. "cmd + U". You can script it with `xcodebuild` or Fastlane Tools.
|
543
565
|
|
544
566
|
|
545
567
|
# Acknowledgements
|
data/XCFit.podspec
CHANGED
data/XCFit4Demo/Cartfile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
github "Shashikant86/XCFit"
|
@@ -0,0 +1,864 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
9B0E3C4B1E4F8DA7005BEC34 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C4A1E4F8DA7005BEC34 /* AppDelegate.swift */; };
|
11
|
+
9B0E3C4D1E4F8DA7005BEC34 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C4C1E4F8DA7005BEC34 /* ViewController.swift */; };
|
12
|
+
9B0E3C501E4F8DA7005BEC34 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9B0E3C4E1E4F8DA7005BEC34 /* Main.storyboard */; };
|
13
|
+
9B0E3C521E4F8DA7005BEC34 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9B0E3C511E4F8DA7005BEC34 /* Assets.xcassets */; };
|
14
|
+
9B0E3C551E4F8DA7005BEC34 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9B0E3C531E4F8DA7005BEC34 /* LaunchScreen.storyboard */; };
|
15
|
+
9B0E3C601E4F8DA8005BEC34 /* XCFit4DemoTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C5F1E4F8DA8005BEC34 /* XCFit4DemoTests.swift */; };
|
16
|
+
9B0E3C771E4F8E23005BEC34 /* HomeScreenTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C761E4F8E23005BEC34 /* HomeScreenTest.swift */; };
|
17
|
+
9B0E3C7A1E4F8E23005BEC34 /* Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C791E4F8E23005BEC34 /* Extensions.swift */; };
|
18
|
+
9B0E3C7D1E4F8E23005BEC34 /* HomeScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C7C1E4F8E23005BEC34 /* HomeScreen.swift */; };
|
19
|
+
9B0E3C7F1E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTestsTestBase.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C7E1E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTestsTestBase.swift */; };
|
20
|
+
9B0E3C901E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C8F1E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.swift */; };
|
21
|
+
9B0E3C931E4F8E6D005BEC34 /* HomeScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C921E4F8E6D005BEC34 /* HomeScreen.swift */; };
|
22
|
+
9B0E3C951E4F8E6D005BEC34 /* BaseScreen.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C941E4F8E6D005BEC34 /* BaseScreen.swift */; };
|
23
|
+
9B0E3C981E4F8E6D005BEC34 /* HomeScreenSteps.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C971E4F8E6D005BEC34 /* HomeScreenSteps.swift */; };
|
24
|
+
9B0E3C9B1E4F8E6D005BEC34 /* Hooks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C9A1E4F8E6D005BEC34 /* Hooks.swift */; };
|
25
|
+
9B0E3C9D1E4F8E6D005BEC34 /* Extensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C9C1E4F8E6D005BEC34 /* Extensions.swift */; };
|
26
|
+
9B0E3C9F1E4F8E6D005BEC34 /* CommonStepDefinitions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3C9E1E4F8E6D005BEC34 /* CommonStepDefinitions.swift */; };
|
27
|
+
9B0E3CA41E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B0E3CA31E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.m */; };
|
28
|
+
9B0E3CAC1E4F8F8C005BEC34 /* Features in Resources */ = {isa = PBXBuildFile; fileRef = 9B0E3CAB1E4F8F8C005BEC34 /* Features */; };
|
29
|
+
9B0E3CAF1E4F8FB0005BEC34 /* Cucumberish.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B0E3CAE1E4F8FB0005BEC34 /* Cucumberish.framework */; };
|
30
|
+
9B0E3CB21E4F8FD7005BEC34 /* Cucumberish.framework in CopyFiles */ = {isa = PBXBuildFile; fileRef = 9B0E3CB11E4F8FD7005BEC34 /* Cucumberish.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
|
31
|
+
9B0E3CB41E4F8FF3005BEC34 /* XCFit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9B0E3CB31E4F8FF3005BEC34 /* XCFit.framework */; };
|
32
|
+
/* End PBXBuildFile section */
|
33
|
+
|
34
|
+
/* Begin PBXContainerItemProxy section */
|
35
|
+
9B0E3C5C1E4F8DA8005BEC34 /* PBXContainerItemProxy */ = {
|
36
|
+
isa = PBXContainerItemProxy;
|
37
|
+
containerPortal = 9B0E3C3F1E4F8DA7005BEC34 /* Project object */;
|
38
|
+
proxyType = 1;
|
39
|
+
remoteGlobalIDString = 9B0E3C461E4F8DA7005BEC34;
|
40
|
+
remoteInfo = XCFit4Demo;
|
41
|
+
};
|
42
|
+
9B0E3C811E4F8E23005BEC34 /* PBXContainerItemProxy */ = {
|
43
|
+
isa = PBXContainerItemProxy;
|
44
|
+
containerPortal = 9B0E3C3F1E4F8DA7005BEC34 /* Project object */;
|
45
|
+
proxyType = 1;
|
46
|
+
remoteGlobalIDString = 9B0E3C461E4F8DA7005BEC34;
|
47
|
+
remoteInfo = XCFit4Demo;
|
48
|
+
};
|
49
|
+
9B0E3CA61E4F8E6D005BEC34 /* PBXContainerItemProxy */ = {
|
50
|
+
isa = PBXContainerItemProxy;
|
51
|
+
containerPortal = 9B0E3C3F1E4F8DA7005BEC34 /* Project object */;
|
52
|
+
proxyType = 1;
|
53
|
+
remoteGlobalIDString = 9B0E3C461E4F8DA7005BEC34;
|
54
|
+
remoteInfo = XCFit4Demo;
|
55
|
+
};
|
56
|
+
/* End PBXContainerItemProxy section */
|
57
|
+
|
58
|
+
/* Begin PBXCopyFilesBuildPhase section */
|
59
|
+
9B0E3CB01E4F8FB5005BEC34 /* CopyFiles */ = {
|
60
|
+
isa = PBXCopyFilesBuildPhase;
|
61
|
+
buildActionMask = 2147483647;
|
62
|
+
dstPath = "";
|
63
|
+
dstSubfolderSpec = 10;
|
64
|
+
files = (
|
65
|
+
9B0E3CB21E4F8FD7005BEC34 /* Cucumberish.framework in CopyFiles */,
|
66
|
+
);
|
67
|
+
runOnlyForDeploymentPostprocessing = 0;
|
68
|
+
};
|
69
|
+
/* End PBXCopyFilesBuildPhase section */
|
70
|
+
|
71
|
+
/* Begin PBXFileReference section */
|
72
|
+
9B0E3C471E4F8DA7005BEC34 /* XCFit4Demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = XCFit4Demo.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
73
|
+
9B0E3C4A1E4F8DA7005BEC34 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
74
|
+
9B0E3C4C1E4F8DA7005BEC34 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
75
|
+
9B0E3C4F1E4F8DA7005BEC34 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
76
|
+
9B0E3C511E4F8DA7005BEC34 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
|
77
|
+
9B0E3C541E4F8DA7005BEC34 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
|
78
|
+
9B0E3C561E4F8DA7005BEC34 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
79
|
+
9B0E3C5B1E4F8DA8005BEC34 /* XCFit4DemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = XCFit4DemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
80
|
+
9B0E3C5F1E4F8DA8005BEC34 /* XCFit4DemoTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = XCFit4DemoTests.swift; sourceTree = "<group>"; };
|
81
|
+
9B0E3C611E4F8DA8005BEC34 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
82
|
+
9B0E3C711E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = XCFit4DemoXCUIPoMTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
83
|
+
9B0E3C761E4F8E23005BEC34 /* HomeScreenTest.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeScreenTest.swift; sourceTree = "<group>"; };
|
84
|
+
9B0E3C791E4F8E23005BEC34 /* Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Extensions.swift; sourceTree = "<group>"; };
|
85
|
+
9B0E3C7C1E4F8E23005BEC34 /* HomeScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeScreen.swift; sourceTree = "<group>"; };
|
86
|
+
9B0E3C7E1E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTestsTestBase.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = XCFit4DemoXCUIPoMTestsTestBase.swift; sourceTree = "<group>"; };
|
87
|
+
9B0E3C801E4F8E23005BEC34 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
88
|
+
9B0E3C8D1E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = XCFit4DemoCucumberTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
89
|
+
9B0E3C8F1E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = XCFit4DemoCucumberTests.swift; sourceTree = "<group>"; };
|
90
|
+
9B0E3C921E4F8E6D005BEC34 /* HomeScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeScreen.swift; sourceTree = "<group>"; };
|
91
|
+
9B0E3C941E4F8E6D005BEC34 /* BaseScreen.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BaseScreen.swift; sourceTree = "<group>"; };
|
92
|
+
9B0E3C971E4F8E6D005BEC34 /* HomeScreenSteps.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = HomeScreenSteps.swift; sourceTree = "<group>"; };
|
93
|
+
9B0E3C9A1E4F8E6D005BEC34 /* Hooks.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Hooks.swift; sourceTree = "<group>"; };
|
94
|
+
9B0E3C9C1E4F8E6D005BEC34 /* Extensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Extensions.swift; sourceTree = "<group>"; };
|
95
|
+
9B0E3C9E1E4F8E6D005BEC34 /* CommonStepDefinitions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CommonStepDefinitions.swift; sourceTree = "<group>"; };
|
96
|
+
9B0E3CA11E4F8E6D005BEC34 /* XCFit4DemoCucumberTests-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "XCFit4DemoCucumberTests-Bridging-Header.h"; sourceTree = "<group>"; };
|
97
|
+
9B0E3CA21E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = XCFit4DemoCucumberTests.h; sourceTree = "<group>"; };
|
98
|
+
9B0E3CA31E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = XCFit4DemoCucumberTests.m; sourceTree = "<group>"; };
|
99
|
+
9B0E3CA51E4F8E6D005BEC34 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
100
|
+
9B0E3CAB1E4F8F8C005BEC34 /* Features */ = {isa = PBXFileReference; lastKnownFileType = folder; path = Features; sourceTree = "<group>"; };
|
101
|
+
9B0E3CAE1E4F8FB0005BEC34 /* Cucumberish.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cucumberish.framework; path = Carthage/Build/iOS/Cucumberish.framework; sourceTree = "<group>"; };
|
102
|
+
9B0E3CB11E4F8FD7005BEC34 /* Cucumberish.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cucumberish.framework; path = Carthage/Build/iOS/Cucumberish.framework; sourceTree = "<group>"; };
|
103
|
+
9B0E3CB31E4F8FF3005BEC34 /* XCFit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = XCFit.framework; path = Carthage/Build/iOS/XCFit.framework; sourceTree = "<group>"; };
|
104
|
+
/* End PBXFileReference section */
|
105
|
+
|
106
|
+
/* Begin PBXFrameworksBuildPhase section */
|
107
|
+
9B0E3C441E4F8DA7005BEC34 /* Frameworks */ = {
|
108
|
+
isa = PBXFrameworksBuildPhase;
|
109
|
+
buildActionMask = 2147483647;
|
110
|
+
files = (
|
111
|
+
);
|
112
|
+
runOnlyForDeploymentPostprocessing = 0;
|
113
|
+
};
|
114
|
+
9B0E3C581E4F8DA8005BEC34 /* Frameworks */ = {
|
115
|
+
isa = PBXFrameworksBuildPhase;
|
116
|
+
buildActionMask = 2147483647;
|
117
|
+
files = (
|
118
|
+
);
|
119
|
+
runOnlyForDeploymentPostprocessing = 0;
|
120
|
+
};
|
121
|
+
9B0E3C6B1E4F8E23005BEC34 /* Frameworks */ = {
|
122
|
+
isa = PBXFrameworksBuildPhase;
|
123
|
+
buildActionMask = 2147483647;
|
124
|
+
files = (
|
125
|
+
9B0E3CB41E4F8FF3005BEC34 /* XCFit.framework in Frameworks */,
|
126
|
+
);
|
127
|
+
runOnlyForDeploymentPostprocessing = 0;
|
128
|
+
};
|
129
|
+
9B0E3C6E1E4F8E23005BEC34 /* Frameworks */ = {
|
130
|
+
isa = PBXFrameworksBuildPhase;
|
131
|
+
buildActionMask = 2147483647;
|
132
|
+
files = (
|
133
|
+
);
|
134
|
+
runOnlyForDeploymentPostprocessing = 0;
|
135
|
+
};
|
136
|
+
9B0E3C871E4F8E6D005BEC34 /* Frameworks */ = {
|
137
|
+
isa = PBXFrameworksBuildPhase;
|
138
|
+
buildActionMask = 2147483647;
|
139
|
+
files = (
|
140
|
+
9B0E3CAF1E4F8FB0005BEC34 /* Cucumberish.framework in Frameworks */,
|
141
|
+
);
|
142
|
+
runOnlyForDeploymentPostprocessing = 0;
|
143
|
+
};
|
144
|
+
9B0E3C8A1E4F8E6D005BEC34 /* Frameworks */ = {
|
145
|
+
isa = PBXFrameworksBuildPhase;
|
146
|
+
buildActionMask = 2147483647;
|
147
|
+
files = (
|
148
|
+
);
|
149
|
+
runOnlyForDeploymentPostprocessing = 0;
|
150
|
+
};
|
151
|
+
/* End PBXFrameworksBuildPhase section */
|
152
|
+
|
153
|
+
/* Begin PBXGroup section */
|
154
|
+
9B0E3C3E1E4F8DA7005BEC34 = {
|
155
|
+
isa = PBXGroup;
|
156
|
+
children = (
|
157
|
+
9B0E3CB11E4F8FD7005BEC34 /* Cucumberish.framework */,
|
158
|
+
9B0E3C491E4F8DA7005BEC34 /* XCFit4Demo */,
|
159
|
+
9B0E3C5E1E4F8DA8005BEC34 /* XCFit4DemoTests */,
|
160
|
+
9B0E3C721E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTests */,
|
161
|
+
9B0E3C8E1E4F8E6D005BEC34 /* XCFit4DemoCucumberTests */,
|
162
|
+
9B0E3C481E4F8DA7005BEC34 /* Products */,
|
163
|
+
9B0E3CAD1E4F8FB0005BEC34 /* Frameworks */,
|
164
|
+
);
|
165
|
+
sourceTree = "<group>";
|
166
|
+
};
|
167
|
+
9B0E3C481E4F8DA7005BEC34 /* Products */ = {
|
168
|
+
isa = PBXGroup;
|
169
|
+
children = (
|
170
|
+
9B0E3C471E4F8DA7005BEC34 /* XCFit4Demo.app */,
|
171
|
+
9B0E3C5B1E4F8DA8005BEC34 /* XCFit4DemoTests.xctest */,
|
172
|
+
9B0E3C711E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTests.xctest */,
|
173
|
+
9B0E3C8D1E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.xctest */,
|
174
|
+
);
|
175
|
+
name = Products;
|
176
|
+
sourceTree = "<group>";
|
177
|
+
};
|
178
|
+
9B0E3C491E4F8DA7005BEC34 /* XCFit4Demo */ = {
|
179
|
+
isa = PBXGroup;
|
180
|
+
children = (
|
181
|
+
9B0E3C4A1E4F8DA7005BEC34 /* AppDelegate.swift */,
|
182
|
+
9B0E3C4C1E4F8DA7005BEC34 /* ViewController.swift */,
|
183
|
+
9B0E3C4E1E4F8DA7005BEC34 /* Main.storyboard */,
|
184
|
+
9B0E3C511E4F8DA7005BEC34 /* Assets.xcassets */,
|
185
|
+
9B0E3C531E4F8DA7005BEC34 /* LaunchScreen.storyboard */,
|
186
|
+
9B0E3C561E4F8DA7005BEC34 /* Info.plist */,
|
187
|
+
);
|
188
|
+
path = XCFit4Demo;
|
189
|
+
sourceTree = "<group>";
|
190
|
+
};
|
191
|
+
9B0E3C5E1E4F8DA8005BEC34 /* XCFit4DemoTests */ = {
|
192
|
+
isa = PBXGroup;
|
193
|
+
children = (
|
194
|
+
9B0E3C5F1E4F8DA8005BEC34 /* XCFit4DemoTests.swift */,
|
195
|
+
9B0E3C611E4F8DA8005BEC34 /* Info.plist */,
|
196
|
+
);
|
197
|
+
path = XCFit4DemoTests;
|
198
|
+
sourceTree = "<group>";
|
199
|
+
};
|
200
|
+
9B0E3C721E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTests */ = {
|
201
|
+
isa = PBXGroup;
|
202
|
+
children = (
|
203
|
+
9B0E3C801E4F8E23005BEC34 /* Info.plist */,
|
204
|
+
9B0E3C751E4F8E23005BEC34 /* Tests */,
|
205
|
+
9B0E3C781E4F8E23005BEC34 /* TestBase */,
|
206
|
+
9B0E3C7B1E4F8E23005BEC34 /* Screens */,
|
207
|
+
);
|
208
|
+
path = XCFit4DemoXCUIPoMTests;
|
209
|
+
sourceTree = "<group>";
|
210
|
+
};
|
211
|
+
9B0E3C751E4F8E23005BEC34 /* Tests */ = {
|
212
|
+
isa = PBXGroup;
|
213
|
+
children = (
|
214
|
+
9B0E3C761E4F8E23005BEC34 /* HomeScreenTest.swift */,
|
215
|
+
);
|
216
|
+
name = Tests;
|
217
|
+
sourceTree = "<group>";
|
218
|
+
};
|
219
|
+
9B0E3C781E4F8E23005BEC34 /* TestBase */ = {
|
220
|
+
isa = PBXGroup;
|
221
|
+
children = (
|
222
|
+
9B0E3C791E4F8E23005BEC34 /* Extensions.swift */,
|
223
|
+
9B0E3C7E1E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTestsTestBase.swift */,
|
224
|
+
);
|
225
|
+
name = TestBase;
|
226
|
+
sourceTree = "<group>";
|
227
|
+
};
|
228
|
+
9B0E3C7B1E4F8E23005BEC34 /* Screens */ = {
|
229
|
+
isa = PBXGroup;
|
230
|
+
children = (
|
231
|
+
9B0E3C7C1E4F8E23005BEC34 /* HomeScreen.swift */,
|
232
|
+
);
|
233
|
+
name = Screens;
|
234
|
+
sourceTree = "<group>";
|
235
|
+
};
|
236
|
+
9B0E3C8E1E4F8E6D005BEC34 /* XCFit4DemoCucumberTests */ = {
|
237
|
+
isa = PBXGroup;
|
238
|
+
children = (
|
239
|
+
9B0E3CAB1E4F8F8C005BEC34 /* Features */,
|
240
|
+
9B0E3C8F1E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.swift */,
|
241
|
+
9B0E3CA51E4F8E6D005BEC34 /* Info.plist */,
|
242
|
+
9B0E3C911E4F8E6D005BEC34 /* Screens */,
|
243
|
+
9B0E3C961E4F8E6D005BEC34 /* Step Definitions */,
|
244
|
+
9B0E3C991E4F8E6D005BEC34 /* Common */,
|
245
|
+
9B0E3CA01E4F8E6D005BEC34 /* Supporting Files */,
|
246
|
+
);
|
247
|
+
path = XCFit4DemoCucumberTests;
|
248
|
+
sourceTree = "<group>";
|
249
|
+
};
|
250
|
+
9B0E3C911E4F8E6D005BEC34 /* Screens */ = {
|
251
|
+
isa = PBXGroup;
|
252
|
+
children = (
|
253
|
+
9B0E3C921E4F8E6D005BEC34 /* HomeScreen.swift */,
|
254
|
+
9B0E3C941E4F8E6D005BEC34 /* BaseScreen.swift */,
|
255
|
+
);
|
256
|
+
name = Screens;
|
257
|
+
sourceTree = "<group>";
|
258
|
+
};
|
259
|
+
9B0E3C961E4F8E6D005BEC34 /* Step Definitions */ = {
|
260
|
+
isa = PBXGroup;
|
261
|
+
children = (
|
262
|
+
9B0E3C971E4F8E6D005BEC34 /* HomeScreenSteps.swift */,
|
263
|
+
);
|
264
|
+
name = "Step Definitions";
|
265
|
+
sourceTree = "<group>";
|
266
|
+
};
|
267
|
+
9B0E3C991E4F8E6D005BEC34 /* Common */ = {
|
268
|
+
isa = PBXGroup;
|
269
|
+
children = (
|
270
|
+
9B0E3C9A1E4F8E6D005BEC34 /* Hooks.swift */,
|
271
|
+
9B0E3C9C1E4F8E6D005BEC34 /* Extensions.swift */,
|
272
|
+
9B0E3C9E1E4F8E6D005BEC34 /* CommonStepDefinitions.swift */,
|
273
|
+
);
|
274
|
+
name = Common;
|
275
|
+
sourceTree = "<group>";
|
276
|
+
};
|
277
|
+
9B0E3CA01E4F8E6D005BEC34 /* Supporting Files */ = {
|
278
|
+
isa = PBXGroup;
|
279
|
+
children = (
|
280
|
+
9B0E3CA11E4F8E6D005BEC34 /* XCFit4DemoCucumberTests-Bridging-Header.h */,
|
281
|
+
9B0E3CA21E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.h */,
|
282
|
+
9B0E3CA31E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.m */,
|
283
|
+
);
|
284
|
+
name = "Supporting Files";
|
285
|
+
sourceTree = "<group>";
|
286
|
+
};
|
287
|
+
9B0E3CAD1E4F8FB0005BEC34 /* Frameworks */ = {
|
288
|
+
isa = PBXGroup;
|
289
|
+
children = (
|
290
|
+
9B0E3CB31E4F8FF3005BEC34 /* XCFit.framework */,
|
291
|
+
9B0E3CAE1E4F8FB0005BEC34 /* Cucumberish.framework */,
|
292
|
+
);
|
293
|
+
name = Frameworks;
|
294
|
+
sourceTree = "<group>";
|
295
|
+
};
|
296
|
+
/* End PBXGroup section */
|
297
|
+
|
298
|
+
/* Begin PBXNativeTarget section */
|
299
|
+
9B0E3C461E4F8DA7005BEC34 /* XCFit4Demo */ = {
|
300
|
+
isa = PBXNativeTarget;
|
301
|
+
buildConfigurationList = 9B0E3C641E4F8DA8005BEC34 /* Build configuration list for PBXNativeTarget "XCFit4Demo" */;
|
302
|
+
buildPhases = (
|
303
|
+
9B0E3C431E4F8DA7005BEC34 /* Sources */,
|
304
|
+
9B0E3C441E4F8DA7005BEC34 /* Frameworks */,
|
305
|
+
9B0E3C451E4F8DA7005BEC34 /* Resources */,
|
306
|
+
);
|
307
|
+
buildRules = (
|
308
|
+
);
|
309
|
+
dependencies = (
|
310
|
+
);
|
311
|
+
name = XCFit4Demo;
|
312
|
+
productName = XCFit4Demo;
|
313
|
+
productReference = 9B0E3C471E4F8DA7005BEC34 /* XCFit4Demo.app */;
|
314
|
+
productType = "com.apple.product-type.application";
|
315
|
+
};
|
316
|
+
9B0E3C5A1E4F8DA8005BEC34 /* XCFit4DemoTests */ = {
|
317
|
+
isa = PBXNativeTarget;
|
318
|
+
buildConfigurationList = 9B0E3C671E4F8DA8005BEC34 /* Build configuration list for PBXNativeTarget "XCFit4DemoTests" */;
|
319
|
+
buildPhases = (
|
320
|
+
9B0E3C571E4F8DA8005BEC34 /* Sources */,
|
321
|
+
9B0E3C581E4F8DA8005BEC34 /* Frameworks */,
|
322
|
+
9B0E3C591E4F8DA8005BEC34 /* Resources */,
|
323
|
+
);
|
324
|
+
buildRules = (
|
325
|
+
);
|
326
|
+
dependencies = (
|
327
|
+
9B0E3C5D1E4F8DA8005BEC34 /* PBXTargetDependency */,
|
328
|
+
);
|
329
|
+
name = XCFit4DemoTests;
|
330
|
+
productName = XCFit4DemoTests;
|
331
|
+
productReference = 9B0E3C5B1E4F8DA8005BEC34 /* XCFit4DemoTests.xctest */;
|
332
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
333
|
+
};
|
334
|
+
9B0E3C701E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTests */ = {
|
335
|
+
isa = PBXNativeTarget;
|
336
|
+
buildConfigurationList = 9B0E3C831E4F8E23005BEC34 /* Build configuration list for PBXNativeTarget "XCFit4DemoXCUIPoMTests" */;
|
337
|
+
buildPhases = (
|
338
|
+
9B0E3C6A1E4F8E23005BEC34 /* Sources */,
|
339
|
+
9B0E3C6B1E4F8E23005BEC34 /* Frameworks */,
|
340
|
+
9B0E3C6C1E4F8E23005BEC34 /* Resources */,
|
341
|
+
9B0E3C6D1E4F8E23005BEC34 /* Sources */,
|
342
|
+
9B0E3C6E1E4F8E23005BEC34 /* Frameworks */,
|
343
|
+
9B0E3C6F1E4F8E23005BEC34 /* Resources */,
|
344
|
+
9B0E3CB51E4F9000005BEC34 /* ShellScript */,
|
345
|
+
);
|
346
|
+
buildRules = (
|
347
|
+
);
|
348
|
+
dependencies = (
|
349
|
+
9B0E3C821E4F8E23005BEC34 /* PBXTargetDependency */,
|
350
|
+
);
|
351
|
+
name = XCFit4DemoXCUIPoMTests;
|
352
|
+
productName = XCFit4DemoXCUIPoMTests;
|
353
|
+
productReference = 9B0E3C711E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTests.xctest */;
|
354
|
+
productType = "com.apple.product-type.bundle.ui-testing";
|
355
|
+
};
|
356
|
+
9B0E3C8C1E4F8E6D005BEC34 /* XCFit4DemoCucumberTests */ = {
|
357
|
+
isa = PBXNativeTarget;
|
358
|
+
buildConfigurationList = 9B0E3CA81E4F8E6D005BEC34 /* Build configuration list for PBXNativeTarget "XCFit4DemoCucumberTests" */;
|
359
|
+
buildPhases = (
|
360
|
+
9B0E3C861E4F8E6D005BEC34 /* Sources */,
|
361
|
+
9B0E3C871E4F8E6D005BEC34 /* Frameworks */,
|
362
|
+
9B0E3C881E4F8E6D005BEC34 /* Resources */,
|
363
|
+
9B0E3C891E4F8E6D005BEC34 /* Sources */,
|
364
|
+
9B0E3C8A1E4F8E6D005BEC34 /* Frameworks */,
|
365
|
+
9B0E3C8B1E4F8E6D005BEC34 /* Resources */,
|
366
|
+
9B0E3CB01E4F8FB5005BEC34 /* CopyFiles */,
|
367
|
+
);
|
368
|
+
buildRules = (
|
369
|
+
);
|
370
|
+
dependencies = (
|
371
|
+
9B0E3CA71E4F8E6D005BEC34 /* PBXTargetDependency */,
|
372
|
+
);
|
373
|
+
name = XCFit4DemoCucumberTests;
|
374
|
+
productName = XCFit4DemoCucumberTests;
|
375
|
+
productReference = 9B0E3C8D1E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.xctest */;
|
376
|
+
productType = "com.apple.product-type.bundle.ui-testing";
|
377
|
+
};
|
378
|
+
/* End PBXNativeTarget section */
|
379
|
+
|
380
|
+
/* Begin PBXProject section */
|
381
|
+
9B0E3C3F1E4F8DA7005BEC34 /* Project object */ = {
|
382
|
+
isa = PBXProject;
|
383
|
+
attributes = {
|
384
|
+
LastSwiftUpdateCheck = 0830;
|
385
|
+
LastUpgradeCheck = 0830;
|
386
|
+
ORGANIZATIONNAME = "Shashikant Jagtap";
|
387
|
+
TargetAttributes = {
|
388
|
+
9B0E3C461E4F8DA7005BEC34 = {
|
389
|
+
CreatedOnToolsVersion = 8.3;
|
390
|
+
ProvisioningStyle = Automatic;
|
391
|
+
};
|
392
|
+
9B0E3C5A1E4F8DA8005BEC34 = {
|
393
|
+
CreatedOnToolsVersion = 8.3;
|
394
|
+
ProvisioningStyle = Automatic;
|
395
|
+
TestTargetID = 9B0E3C461E4F8DA7005BEC34;
|
396
|
+
};
|
397
|
+
9B0E3C701E4F8E23005BEC34 = {
|
398
|
+
CreatedOnToolsVersion = 8.3;
|
399
|
+
ProvisioningStyle = Automatic;
|
400
|
+
TestTargetID = 9B0E3C461E4F8DA7005BEC34;
|
401
|
+
};
|
402
|
+
9B0E3C8C1E4F8E6D005BEC34 = {
|
403
|
+
CreatedOnToolsVersion = 8.3;
|
404
|
+
ProvisioningStyle = Automatic;
|
405
|
+
TestTargetID = 9B0E3C461E4F8DA7005BEC34;
|
406
|
+
};
|
407
|
+
};
|
408
|
+
};
|
409
|
+
buildConfigurationList = 9B0E3C421E4F8DA7005BEC34 /* Build configuration list for PBXProject "XCFit4Demo" */;
|
410
|
+
compatibilityVersion = "Xcode 3.2";
|
411
|
+
developmentRegion = English;
|
412
|
+
hasScannedForEncodings = 0;
|
413
|
+
knownRegions = (
|
414
|
+
en,
|
415
|
+
Base,
|
416
|
+
);
|
417
|
+
mainGroup = 9B0E3C3E1E4F8DA7005BEC34;
|
418
|
+
productRefGroup = 9B0E3C481E4F8DA7005BEC34 /* Products */;
|
419
|
+
projectDirPath = "";
|
420
|
+
projectRoot = "";
|
421
|
+
targets = (
|
422
|
+
9B0E3C461E4F8DA7005BEC34 /* XCFit4Demo */,
|
423
|
+
9B0E3C5A1E4F8DA8005BEC34 /* XCFit4DemoTests */,
|
424
|
+
9B0E3C701E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTests */,
|
425
|
+
9B0E3C8C1E4F8E6D005BEC34 /* XCFit4DemoCucumberTests */,
|
426
|
+
);
|
427
|
+
};
|
428
|
+
/* End PBXProject section */
|
429
|
+
|
430
|
+
/* Begin PBXResourcesBuildPhase section */
|
431
|
+
9B0E3C451E4F8DA7005BEC34 /* Resources */ = {
|
432
|
+
isa = PBXResourcesBuildPhase;
|
433
|
+
buildActionMask = 2147483647;
|
434
|
+
files = (
|
435
|
+
9B0E3C551E4F8DA7005BEC34 /* LaunchScreen.storyboard in Resources */,
|
436
|
+
9B0E3C521E4F8DA7005BEC34 /* Assets.xcassets in Resources */,
|
437
|
+
9B0E3C501E4F8DA7005BEC34 /* Main.storyboard in Resources */,
|
438
|
+
);
|
439
|
+
runOnlyForDeploymentPostprocessing = 0;
|
440
|
+
};
|
441
|
+
9B0E3C591E4F8DA8005BEC34 /* Resources */ = {
|
442
|
+
isa = PBXResourcesBuildPhase;
|
443
|
+
buildActionMask = 2147483647;
|
444
|
+
files = (
|
445
|
+
);
|
446
|
+
runOnlyForDeploymentPostprocessing = 0;
|
447
|
+
};
|
448
|
+
9B0E3C6C1E4F8E23005BEC34 /* Resources */ = {
|
449
|
+
isa = PBXResourcesBuildPhase;
|
450
|
+
buildActionMask = 2147483647;
|
451
|
+
files = (
|
452
|
+
);
|
453
|
+
runOnlyForDeploymentPostprocessing = 0;
|
454
|
+
};
|
455
|
+
9B0E3C6F1E4F8E23005BEC34 /* Resources */ = {
|
456
|
+
isa = PBXResourcesBuildPhase;
|
457
|
+
buildActionMask = 2147483647;
|
458
|
+
files = (
|
459
|
+
);
|
460
|
+
runOnlyForDeploymentPostprocessing = 0;
|
461
|
+
};
|
462
|
+
9B0E3C881E4F8E6D005BEC34 /* Resources */ = {
|
463
|
+
isa = PBXResourcesBuildPhase;
|
464
|
+
buildActionMask = 2147483647;
|
465
|
+
files = (
|
466
|
+
9B0E3CAC1E4F8F8C005BEC34 /* Features in Resources */,
|
467
|
+
);
|
468
|
+
runOnlyForDeploymentPostprocessing = 0;
|
469
|
+
};
|
470
|
+
9B0E3C8B1E4F8E6D005BEC34 /* Resources */ = {
|
471
|
+
isa = PBXResourcesBuildPhase;
|
472
|
+
buildActionMask = 2147483647;
|
473
|
+
files = (
|
474
|
+
);
|
475
|
+
runOnlyForDeploymentPostprocessing = 0;
|
476
|
+
};
|
477
|
+
/* End PBXResourcesBuildPhase section */
|
478
|
+
|
479
|
+
/* Begin PBXShellScriptBuildPhase section */
|
480
|
+
9B0E3CB51E4F9000005BEC34 /* ShellScript */ = {
|
481
|
+
isa = PBXShellScriptBuildPhase;
|
482
|
+
buildActionMask = 2147483647;
|
483
|
+
files = (
|
484
|
+
);
|
485
|
+
inputPaths = (
|
486
|
+
"$(SRCROOT)/Carthage/Build/iOS/XCFit.framework",
|
487
|
+
);
|
488
|
+
outputPaths = (
|
489
|
+
);
|
490
|
+
runOnlyForDeploymentPostprocessing = 0;
|
491
|
+
shellPath = /bin/sh;
|
492
|
+
shellScript = "/usr/local/bin/carthage copy-frameworks";
|
493
|
+
};
|
494
|
+
/* End PBXShellScriptBuildPhase section */
|
495
|
+
|
496
|
+
/* Begin PBXSourcesBuildPhase section */
|
497
|
+
9B0E3C431E4F8DA7005BEC34 /* Sources */ = {
|
498
|
+
isa = PBXSourcesBuildPhase;
|
499
|
+
buildActionMask = 2147483647;
|
500
|
+
files = (
|
501
|
+
9B0E3C4D1E4F8DA7005BEC34 /* ViewController.swift in Sources */,
|
502
|
+
9B0E3C4B1E4F8DA7005BEC34 /* AppDelegate.swift in Sources */,
|
503
|
+
);
|
504
|
+
runOnlyForDeploymentPostprocessing = 0;
|
505
|
+
};
|
506
|
+
9B0E3C571E4F8DA8005BEC34 /* Sources */ = {
|
507
|
+
isa = PBXSourcesBuildPhase;
|
508
|
+
buildActionMask = 2147483647;
|
509
|
+
files = (
|
510
|
+
9B0E3C601E4F8DA8005BEC34 /* XCFit4DemoTests.swift in Sources */,
|
511
|
+
);
|
512
|
+
runOnlyForDeploymentPostprocessing = 0;
|
513
|
+
};
|
514
|
+
9B0E3C6A1E4F8E23005BEC34 /* Sources */ = {
|
515
|
+
isa = PBXSourcesBuildPhase;
|
516
|
+
buildActionMask = 2147483647;
|
517
|
+
files = (
|
518
|
+
9B0E3C7D1E4F8E23005BEC34 /* HomeScreen.swift in Sources */,
|
519
|
+
9B0E3C771E4F8E23005BEC34 /* HomeScreenTest.swift in Sources */,
|
520
|
+
9B0E3C7A1E4F8E23005BEC34 /* Extensions.swift in Sources */,
|
521
|
+
9B0E3C7F1E4F8E23005BEC34 /* XCFit4DemoXCUIPoMTestsTestBase.swift in Sources */,
|
522
|
+
);
|
523
|
+
runOnlyForDeploymentPostprocessing = 0;
|
524
|
+
};
|
525
|
+
9B0E3C6D1E4F8E23005BEC34 /* Sources */ = {
|
526
|
+
isa = PBXSourcesBuildPhase;
|
527
|
+
buildActionMask = 2147483647;
|
528
|
+
files = (
|
529
|
+
);
|
530
|
+
runOnlyForDeploymentPostprocessing = 0;
|
531
|
+
};
|
532
|
+
9B0E3C861E4F8E6D005BEC34 /* Sources */ = {
|
533
|
+
isa = PBXSourcesBuildPhase;
|
534
|
+
buildActionMask = 2147483647;
|
535
|
+
files = (
|
536
|
+
9B0E3C981E4F8E6D005BEC34 /* HomeScreenSteps.swift in Sources */,
|
537
|
+
9B0E3C9D1E4F8E6D005BEC34 /* Extensions.swift in Sources */,
|
538
|
+
9B0E3C931E4F8E6D005BEC34 /* HomeScreen.swift in Sources */,
|
539
|
+
9B0E3C901E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.swift in Sources */,
|
540
|
+
9B0E3CA41E4F8E6D005BEC34 /* XCFit4DemoCucumberTests.m in Sources */,
|
541
|
+
9B0E3C951E4F8E6D005BEC34 /* BaseScreen.swift in Sources */,
|
542
|
+
9B0E3C9B1E4F8E6D005BEC34 /* Hooks.swift in Sources */,
|
543
|
+
9B0E3C9F1E4F8E6D005BEC34 /* CommonStepDefinitions.swift in Sources */,
|
544
|
+
);
|
545
|
+
runOnlyForDeploymentPostprocessing = 0;
|
546
|
+
};
|
547
|
+
9B0E3C891E4F8E6D005BEC34 /* Sources */ = {
|
548
|
+
isa = PBXSourcesBuildPhase;
|
549
|
+
buildActionMask = 2147483647;
|
550
|
+
files = (
|
551
|
+
);
|
552
|
+
runOnlyForDeploymentPostprocessing = 0;
|
553
|
+
};
|
554
|
+
/* End PBXSourcesBuildPhase section */
|
555
|
+
|
556
|
+
/* Begin PBXTargetDependency section */
|
557
|
+
9B0E3C5D1E4F8DA8005BEC34 /* PBXTargetDependency */ = {
|
558
|
+
isa = PBXTargetDependency;
|
559
|
+
target = 9B0E3C461E4F8DA7005BEC34 /* XCFit4Demo */;
|
560
|
+
targetProxy = 9B0E3C5C1E4F8DA8005BEC34 /* PBXContainerItemProxy */;
|
561
|
+
};
|
562
|
+
9B0E3C821E4F8E23005BEC34 /* PBXTargetDependency */ = {
|
563
|
+
isa = PBXTargetDependency;
|
564
|
+
target = 9B0E3C461E4F8DA7005BEC34 /* XCFit4Demo */;
|
565
|
+
targetProxy = 9B0E3C811E4F8E23005BEC34 /* PBXContainerItemProxy */;
|
566
|
+
};
|
567
|
+
9B0E3CA71E4F8E6D005BEC34 /* PBXTargetDependency */ = {
|
568
|
+
isa = PBXTargetDependency;
|
569
|
+
target = 9B0E3C461E4F8DA7005BEC34 /* XCFit4Demo */;
|
570
|
+
targetProxy = 9B0E3CA61E4F8E6D005BEC34 /* PBXContainerItemProxy */;
|
571
|
+
};
|
572
|
+
/* End PBXTargetDependency section */
|
573
|
+
|
574
|
+
/* Begin PBXVariantGroup section */
|
575
|
+
9B0E3C4E1E4F8DA7005BEC34 /* Main.storyboard */ = {
|
576
|
+
isa = PBXVariantGroup;
|
577
|
+
children = (
|
578
|
+
9B0E3C4F1E4F8DA7005BEC34 /* Base */,
|
579
|
+
);
|
580
|
+
name = Main.storyboard;
|
581
|
+
sourceTree = "<group>";
|
582
|
+
};
|
583
|
+
9B0E3C531E4F8DA7005BEC34 /* LaunchScreen.storyboard */ = {
|
584
|
+
isa = PBXVariantGroup;
|
585
|
+
children = (
|
586
|
+
9B0E3C541E4F8DA7005BEC34 /* Base */,
|
587
|
+
);
|
588
|
+
name = LaunchScreen.storyboard;
|
589
|
+
sourceTree = "<group>";
|
590
|
+
};
|
591
|
+
/* End PBXVariantGroup section */
|
592
|
+
|
593
|
+
/* Begin XCBuildConfiguration section */
|
594
|
+
9B0E3C621E4F8DA8005BEC34 /* Debug */ = {
|
595
|
+
isa = XCBuildConfiguration;
|
596
|
+
buildSettings = {
|
597
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
598
|
+
CLANG_ANALYZER_NONNULL = YES;
|
599
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
600
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
601
|
+
CLANG_CXX_LIBRARY = "libc++";
|
602
|
+
CLANG_ENABLE_MODULES = YES;
|
603
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
604
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
605
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
606
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
607
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
608
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
609
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
610
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
611
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
612
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
613
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
614
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
615
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
616
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
617
|
+
COPY_PHASE_STRIP = NO;
|
618
|
+
DEBUG_INFORMATION_FORMAT = dwarf;
|
619
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
620
|
+
ENABLE_TESTABILITY = YES;
|
621
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
622
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
623
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
624
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
625
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
626
|
+
"DEBUG=1",
|
627
|
+
"$(inherited)",
|
628
|
+
);
|
629
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
630
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
631
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
632
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
633
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
634
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
635
|
+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
|
636
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
637
|
+
ONLY_ACTIVE_ARCH = YES;
|
638
|
+
SDKROOT = iphoneos;
|
639
|
+
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
640
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
641
|
+
};
|
642
|
+
name = Debug;
|
643
|
+
};
|
644
|
+
9B0E3C631E4F8DA8005BEC34 /* Release */ = {
|
645
|
+
isa = XCBuildConfiguration;
|
646
|
+
buildSettings = {
|
647
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
648
|
+
CLANG_ANALYZER_NONNULL = YES;
|
649
|
+
CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
|
650
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
651
|
+
CLANG_CXX_LIBRARY = "libc++";
|
652
|
+
CLANG_ENABLE_MODULES = YES;
|
653
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
654
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
655
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
656
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
657
|
+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
|
658
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
659
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
660
|
+
CLANG_WARN_INFINITE_RECURSION = YES;
|
661
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
662
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
663
|
+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
|
664
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
665
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
666
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
667
|
+
COPY_PHASE_STRIP = NO;
|
668
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
669
|
+
ENABLE_NS_ASSERTIONS = NO;
|
670
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
671
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
672
|
+
GCC_NO_COMMON_BLOCKS = YES;
|
673
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
674
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
675
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
676
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
677
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
678
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
679
|
+
IPHONEOS_DEPLOYMENT_TARGET = 10.3;
|
680
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
681
|
+
SDKROOT = iphoneos;
|
682
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
|
683
|
+
VALIDATE_PRODUCT = YES;
|
684
|
+
};
|
685
|
+
name = Release;
|
686
|
+
};
|
687
|
+
9B0E3C651E4F8DA8005BEC34 /* Debug */ = {
|
688
|
+
isa = XCBuildConfiguration;
|
689
|
+
buildSettings = {
|
690
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
691
|
+
INFOPLIST_FILE = XCFit4Demo/Info.plist;
|
692
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
693
|
+
PRODUCT_BUNDLE_IDENTIFIER = Test.XCFit4Demo;
|
694
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
695
|
+
SWIFT_VERSION = 3.0;
|
696
|
+
};
|
697
|
+
name = Debug;
|
698
|
+
};
|
699
|
+
9B0E3C661E4F8DA8005BEC34 /* Release */ = {
|
700
|
+
isa = XCBuildConfiguration;
|
701
|
+
buildSettings = {
|
702
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
703
|
+
INFOPLIST_FILE = XCFit4Demo/Info.plist;
|
704
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
705
|
+
PRODUCT_BUNDLE_IDENTIFIER = Test.XCFit4Demo;
|
706
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
707
|
+
SWIFT_VERSION = 3.0;
|
708
|
+
};
|
709
|
+
name = Release;
|
710
|
+
};
|
711
|
+
9B0E3C681E4F8DA8005BEC34 /* Debug */ = {
|
712
|
+
isa = XCBuildConfiguration;
|
713
|
+
buildSettings = {
|
714
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
715
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
716
|
+
INFOPLIST_FILE = XCFit4DemoTests/Info.plist;
|
717
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
718
|
+
PRODUCT_BUNDLE_IDENTIFIER = Test.XCFit4DemoTests;
|
719
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
720
|
+
SWIFT_VERSION = 3.0;
|
721
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/XCFit4Demo.app/XCFit4Demo";
|
722
|
+
};
|
723
|
+
name = Debug;
|
724
|
+
};
|
725
|
+
9B0E3C691E4F8DA8005BEC34 /* Release */ = {
|
726
|
+
isa = XCBuildConfiguration;
|
727
|
+
buildSettings = {
|
728
|
+
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;
|
729
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
730
|
+
INFOPLIST_FILE = XCFit4DemoTests/Info.plist;
|
731
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
732
|
+
PRODUCT_BUNDLE_IDENTIFIER = Test.XCFit4DemoTests;
|
733
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
734
|
+
SWIFT_VERSION = 3.0;
|
735
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/XCFit4Demo.app/XCFit4Demo";
|
736
|
+
};
|
737
|
+
name = Release;
|
738
|
+
};
|
739
|
+
9B0E3C841E4F8E23005BEC34 /* Debug */ = {
|
740
|
+
isa = XCBuildConfiguration;
|
741
|
+
buildSettings = {
|
742
|
+
FRAMEWORK_SEARCH_PATHS = (
|
743
|
+
"$(inherited)",
|
744
|
+
"$(PROJECT_DIR)/Carthage/Build/iOS",
|
745
|
+
);
|
746
|
+
INFOPLIST_FILE = XCFit4DemoXCUIPoMTests/Info.plist;
|
747
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
748
|
+
PRODUCT_BUNDLE_IDENTIFIER = Test.XCFit4DemoXCUIPoMTests;
|
749
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
750
|
+
SRC_ROOT = "@\\\"$(SRCROOT)\\\"";
|
751
|
+
SWIFT_VERSION = 3.0;
|
752
|
+
TEST_TARGET_NAME = XCFit4Demo;
|
753
|
+
};
|
754
|
+
name = Debug;
|
755
|
+
};
|
756
|
+
9B0E3C851E4F8E23005BEC34 /* Release */ = {
|
757
|
+
isa = XCBuildConfiguration;
|
758
|
+
buildSettings = {
|
759
|
+
FRAMEWORK_SEARCH_PATHS = (
|
760
|
+
"$(inherited)",
|
761
|
+
"$(PROJECT_DIR)/Carthage/Build/iOS",
|
762
|
+
);
|
763
|
+
INFOPLIST_FILE = XCFit4DemoXCUIPoMTests/Info.plist;
|
764
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
765
|
+
PRODUCT_BUNDLE_IDENTIFIER = Test.XCFit4DemoXCUIPoMTests;
|
766
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
767
|
+
SWIFT_VERSION = 3.0;
|
768
|
+
TEST_TARGET_NAME = XCFit4Demo;
|
769
|
+
};
|
770
|
+
name = Release;
|
771
|
+
};
|
772
|
+
9B0E3CA91E4F8E6D005BEC34 /* Debug */ = {
|
773
|
+
isa = XCBuildConfiguration;
|
774
|
+
buildSettings = {
|
775
|
+
FRAMEWORK_SEARCH_PATHS = (
|
776
|
+
"$(inherited)",
|
777
|
+
"$(PROJECT_DIR)/Carthage/Build/iOS",
|
778
|
+
);
|
779
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
780
|
+
"DEBUG=1",
|
781
|
+
"$(inherited)",
|
782
|
+
"SRC_ROOT=@\\\"$(SRCROOT)\\\"",
|
783
|
+
);
|
784
|
+
INFOPLIST_FILE = XCFit4DemoCucumberTests/Info.plist;
|
785
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
786
|
+
PRODUCT_BUNDLE_IDENTIFIER = Test.XCFit4DemoCucumberTests;
|
787
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
788
|
+
SRC_ROOT = "@\\\"$(SRCROOT)\\\"";
|
789
|
+
SWIFT_OBJC_BRIDGING_HEADER = "XCFit4DemoCucumberTests/XCFit4DemoCucumberTests-Bridging-Header.h";
|
790
|
+
SWIFT_VERSION = 3.0;
|
791
|
+
TEST_TARGET_NAME = XCFit4Demo;
|
792
|
+
};
|
793
|
+
name = Debug;
|
794
|
+
};
|
795
|
+
9B0E3CAA1E4F8E6D005BEC34 /* Release */ = {
|
796
|
+
isa = XCBuildConfiguration;
|
797
|
+
buildSettings = {
|
798
|
+
FRAMEWORK_SEARCH_PATHS = (
|
799
|
+
"$(inherited)",
|
800
|
+
"$(PROJECT_DIR)/Carthage/Build/iOS",
|
801
|
+
);
|
802
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
803
|
+
"DEBUG=1",
|
804
|
+
"$(inherited)",
|
805
|
+
"SRC_ROOT=@\\\"$(SRCROOT)\\\"",
|
806
|
+
);
|
807
|
+
INFOPLIST_FILE = XCFit4DemoCucumberTests/Info.plist;
|
808
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
809
|
+
PRODUCT_BUNDLE_IDENTIFIER = Test.XCFit4DemoCucumberTests;
|
810
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
811
|
+
SWIFT_OBJC_BRIDGING_HEADER = "XCFit4DemoCucumberTests/XCFit4DemoCucumberTests-Bridging-Header.h";
|
812
|
+
SWIFT_VERSION = 3.0;
|
813
|
+
TEST_TARGET_NAME = XCFit4Demo;
|
814
|
+
};
|
815
|
+
name = Release;
|
816
|
+
};
|
817
|
+
/* End XCBuildConfiguration section */
|
818
|
+
|
819
|
+
/* Begin XCConfigurationList section */
|
820
|
+
9B0E3C421E4F8DA7005BEC34 /* Build configuration list for PBXProject "XCFit4Demo" */ = {
|
821
|
+
isa = XCConfigurationList;
|
822
|
+
buildConfigurations = (
|
823
|
+
9B0E3C621E4F8DA8005BEC34 /* Debug */,
|
824
|
+
9B0E3C631E4F8DA8005BEC34 /* Release */,
|
825
|
+
);
|
826
|
+
defaultConfigurationIsVisible = 0;
|
827
|
+
defaultConfigurationName = Release;
|
828
|
+
};
|
829
|
+
9B0E3C641E4F8DA8005BEC34 /* Build configuration list for PBXNativeTarget "XCFit4Demo" */ = {
|
830
|
+
isa = XCConfigurationList;
|
831
|
+
buildConfigurations = (
|
832
|
+
9B0E3C651E4F8DA8005BEC34 /* Debug */,
|
833
|
+
9B0E3C661E4F8DA8005BEC34 /* Release */,
|
834
|
+
);
|
835
|
+
defaultConfigurationIsVisible = 0;
|
836
|
+
};
|
837
|
+
9B0E3C671E4F8DA8005BEC34 /* Build configuration list for PBXNativeTarget "XCFit4DemoTests" */ = {
|
838
|
+
isa = XCConfigurationList;
|
839
|
+
buildConfigurations = (
|
840
|
+
9B0E3C681E4F8DA8005BEC34 /* Debug */,
|
841
|
+
9B0E3C691E4F8DA8005BEC34 /* Release */,
|
842
|
+
);
|
843
|
+
defaultConfigurationIsVisible = 0;
|
844
|
+
};
|
845
|
+
9B0E3C831E4F8E23005BEC34 /* Build configuration list for PBXNativeTarget "XCFit4DemoXCUIPoMTests" */ = {
|
846
|
+
isa = XCConfigurationList;
|
847
|
+
buildConfigurations = (
|
848
|
+
9B0E3C841E4F8E23005BEC34 /* Debug */,
|
849
|
+
9B0E3C851E4F8E23005BEC34 /* Release */,
|
850
|
+
);
|
851
|
+
defaultConfigurationIsVisible = 0;
|
852
|
+
};
|
853
|
+
9B0E3CA81E4F8E6D005BEC34 /* Build configuration list for PBXNativeTarget "XCFit4DemoCucumberTests" */ = {
|
854
|
+
isa = XCConfigurationList;
|
855
|
+
buildConfigurations = (
|
856
|
+
9B0E3CA91E4F8E6D005BEC34 /* Debug */,
|
857
|
+
9B0E3CAA1E4F8E6D005BEC34 /* Release */,
|
858
|
+
);
|
859
|
+
defaultConfigurationIsVisible = 0;
|
860
|
+
};
|
861
|
+
/* End XCConfigurationList section */
|
862
|
+
};
|
863
|
+
rootObject = 9B0E3C3F1E4F8DA7005BEC34 /* Project object */;
|
864
|
+
}
|