xcfit 2.0.9 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Docs/README_XCFit2.md +572 -0
- data/Gemfile.lock +2 -2
- data/README.md +182 -203
- data/homebrew/xcfit +25 -6
- data/lib/XCFit/main.rb +13 -0
- data/lib/XCFit/version.rb +1 -1
- metadata +3 -21
- data/XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/TemplateIcon.icns +0 -0
- data/XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/TemplateInfo.plist +0 -134
- data/XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___.m +0 -17
- data/XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___.swift +0 -13
- data/XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/___POD_NAME___.m +0 -25
- data/XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/AcceptanceTests-Bridging-Header.h +0 -1
- data/XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/FixtureExample.swift +0 -35
- data/XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/SlimTables.h +0 -28
- data/XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/TemplateInfo.plist +0 -155
- data/XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/___PACKAGENAMEASIDENTIFIER___-Bridging-Header.h +0 -12
- data/XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/___PACKAGENAMEASIDENTIFIER___.m +0 -33
- data/XCFit_Templates/XCFit/iOS Acceptance Testing Bundle.xctemplate/TemplateIcon-old.icns +0 -0
- data/XCFit_Templates/XCFit/iOS Acceptance Testing Bundle.xctemplate/TemplateIcon.png +0 -0
- data/XCFit_Templates/XCFit/iOS Acceptance Testing Bundle.xctemplate/TemplateIcon@2x.png +0 -0
- data/XCFit_Templates/XCFit/iOS Acceptance Testing Bundle.xctemplate/TemplateInfo.plist +0 -40
- data/XCFit_Templates/XCFit/iOS Acceptance Tests.xctemplate/TemplateIcon-old.icns +0 -0
- data/XCFit_Templates/XCFit/iOS Acceptance Tests.xctemplate/TemplateIcon.png +0 -0
- data/XCFit_Templates/XCFit/iOS Acceptance Tests.xctemplate/TemplateIcon@2x.png +0 -0
- data/XCFit_Templates/XCFit/iOS Acceptance Tests.xctemplate/TemplateInfo.plist +0 -59
data/homebrew/xcfit
CHANGED
@@ -20,14 +20,14 @@ puts "==================XXXXXXXX==========================="
|
|
20
20
|
|
21
21
|
def clone_xcfit
|
22
22
|
# system("cd /tmp")
|
23
|
-
system("cd /tmp && curl -sL https://github.com/Shashikant86/XCFit/archive/3.0.
|
23
|
+
system("cd /tmp && curl -sL https://github.com/Shashikant86/XCFit/archive/3.1.0.tar.gz | tar xz")
|
24
24
|
puts "*******======= Downloading XCFit Templates for the Xcode =============***"
|
25
|
-
@xcfit_template_dir = "/tmp/XCFit-3.0
|
26
|
-
@gherkin_template_dir = "/tmp/XCFit-3.0
|
25
|
+
@xcfit_template_dir = "/tmp/XCFit-3.1.0/XCFit_Templates/XCFit"
|
26
|
+
@gherkin_template_dir = "/tmp/XCFit-3.1.0/XCFit_Templates/Gherkin"
|
27
27
|
end
|
28
28
|
|
29
29
|
def clean_xcfit
|
30
|
-
system("rm -rf /tmp/XCFit-3.0
|
30
|
+
system("rm -rf /tmp/XCFit-3.1.0/")
|
31
31
|
end
|
32
32
|
|
33
33
|
def setup_xcode_templates
|
@@ -73,6 +73,18 @@ def setup_gherkin_template
|
|
73
73
|
|
74
74
|
end
|
75
75
|
|
76
|
+
desc 'setup_fitnesse_templates', 'Downloads Fitnesse Xcode Templates from OCSlim'
|
77
|
+
def setup_fitnesse_templates
|
78
|
+
puts "==================XXXXXXXX==========================="
|
79
|
+
puts 'Downloading Fitnesse Templates'
|
80
|
+
puts "==================XXXXXXXX==========================="
|
81
|
+
system("cd /tmp && curl -sL https://github.com/Shashikant86/OCSlimProjectXcodeTemplates/archive/2.0.0.tar.gz| tar xz")
|
82
|
+
system("cd /tmp/OCSlimProjectXcodeTemplates-2.0.0/ && make")
|
83
|
+
puts "==================XXXXXXXX==========================="
|
84
|
+
puts "=======Created Xcode Templates for the Fitnesse ===="
|
85
|
+
puts "==================XXXXXXXX==========================="
|
86
|
+
end
|
87
|
+
|
76
88
|
def get_cucumberish
|
77
89
|
puts "==================XXXXXXXX==========================="
|
78
90
|
puts 'Downloading Cucumberish in the current working directory'
|
@@ -92,7 +104,9 @@ def print_usage
|
|
92
104
|
|
93
105
|
<command-name> can be one of
|
94
106
|
setup_xcode_templates
|
95
|
-
generate a Xcode 8 Templates for the
|
107
|
+
generate a Xcode 8 Templates for the XCUI and Cucumberish
|
108
|
+
setup_fitnesse_templates
|
109
|
+
generate a Xcode 8 Templates for Fitnesse
|
96
110
|
setup_gherkin_template
|
97
111
|
generate Xcode Templates for the Gherkin Feature Files
|
98
112
|
get_cucumberish
|
@@ -116,13 +130,16 @@ def print_help
|
|
116
130
|
<command-name> can be one of
|
117
131
|
help
|
118
132
|
setup_xcode_templates
|
133
|
+
setup_fitnesse_templates
|
119
134
|
setup_gherkin_tmplate
|
120
135
|
version
|
121
136
|
|
122
137
|
Commands:
|
123
138
|
help : prints more detailed help information.
|
124
139
|
|
125
|
-
setup_xcode_templates : Generate a Xcode8 Templates for the
|
140
|
+
setup_xcode_templates : Generate a Xcode8 Templates for the XCUI and Cucumberish
|
141
|
+
|
142
|
+
setup_fitnesse_templates : Generate Xcode templates for the Fitnesse
|
126
143
|
|
127
144
|
setup_gherkin_template : Generate Xcode Templates for the Gherkin Feature Files
|
128
145
|
|
@@ -143,6 +160,8 @@ else
|
|
143
160
|
print_help
|
144
161
|
elsif cmd == 'setup_xcode_templates'
|
145
162
|
setup_xcode_templates
|
163
|
+
elsif cmd == 'setup_fitnesse_templates'
|
164
|
+
setup_fitnesse_templates
|
146
165
|
elsif cmd == 'get_cucumberish'
|
147
166
|
get_cucumberish
|
148
167
|
elsif cmd == 'version'
|
data/lib/XCFit/main.rb
CHANGED
@@ -92,6 +92,19 @@ module XCFit
|
|
92
92
|
puts " ***************** Enjoy XCFit *****************"
|
93
93
|
end
|
94
94
|
|
95
|
+
desc 'setup_fitnesse_templates', 'Downloads Fitnesse Xcode Templates from OCSlim'
|
96
|
+
def setup_fitnesse_templates
|
97
|
+
puts "==================XXXXXXXX==========================="
|
98
|
+
puts 'Downloading Fitnesse Templates'
|
99
|
+
puts "==================XXXXXXXX==========================="
|
100
|
+
system("cd /tmp && curl -sL https://github.com/Shashikant86/OCSlimProjectXcodeTemplates/archive/2.0.0.tar.gz| tar xz")
|
101
|
+
system("cd /tmp/OCSlimProjectXcodeTemplates-2.0.0/ && make")
|
102
|
+
puts "==================XXXXXXXX==========================="
|
103
|
+
puts "=======Created Xcode Templates for the Fitnesse ===="
|
104
|
+
puts "==================XXXXXXXX==========================="
|
105
|
+
end
|
106
|
+
|
107
|
+
|
95
108
|
desc 'get_cucumberish VERSION', 'Downloads Cucumberish version and Create Features directory. You must execute this from Cucumberish Xcode Target directory'
|
96
109
|
def get_cucumberish(version="1.0.0")
|
97
110
|
puts "==================XXXXXXXX==========================="
|
data/lib/XCFit/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xcfit
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.0
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Shashikant86
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-02-
|
11
|
+
date: 2017-02-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -67,6 +67,7 @@ files:
|
|
67
67
|
- ".travis.yml"
|
68
68
|
- Dangerfile
|
69
69
|
- Docs/InitialVersion.md
|
70
|
+
- Docs/README_XCFit2.md
|
70
71
|
- Docs/Xcode7.md
|
71
72
|
- Docs/xcdoe7swift2.md
|
72
73
|
- Gemfile
|
@@ -81,17 +82,6 @@ files:
|
|
81
82
|
- XCFit_Templates/Gherkin/Cucumber Feature.xctemplate/TemplateIcon@2x.png
|
82
83
|
- XCFit_Templates/Gherkin/Cucumber Feature.xctemplate/TemplateInfo.plist
|
83
84
|
- XCFit_Templates/Gherkin/Cucumber Feature.xctemplate/___FILEBASENAME___.feature
|
84
|
-
- XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/TemplateIcon.icns
|
85
|
-
- XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/TemplateInfo.plist
|
86
|
-
- XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___.m
|
87
|
-
- XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___.swift
|
88
|
-
- XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/___POD_NAME___.m
|
89
|
-
- XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/AcceptanceTests-Bridging-Header.h
|
90
|
-
- XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/FixtureExample.swift
|
91
|
-
- XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/SlimTables.h
|
92
|
-
- XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/TemplateInfo.plist
|
93
|
-
- XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/___PACKAGENAMEASIDENTIFIER___-Bridging-Header.h
|
94
|
-
- XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/___PACKAGENAMEASIDENTIFIER___.m
|
95
85
|
- XCFit_Templates/XCFit/Cucumberish UI Test Bundle Base.xctemplate/BaseScreen.swift
|
96
86
|
- XCFit_Templates/XCFit/Cucumberish UI Test Bundle Base.xctemplate/CommonStepDefinitions.swift
|
97
87
|
- XCFit_Templates/XCFit/Cucumberish UI Test Bundle Base.xctemplate/Extensions.swift
|
@@ -112,14 +102,6 @@ files:
|
|
112
102
|
- XCFit_Templates/XCFit/XCUI POM Test Bundle Base.xctemplate/TemplateIcon@2x.png
|
113
103
|
- XCFit_Templates/XCFit/XCUI POM Test Bundle Base.xctemplate/TemplateInfo.plist
|
114
104
|
- XCFit_Templates/XCFit/XCUI POM Test Bundle Base.xctemplate/___PACKAGENAMEASIDENTIFIER___TestBase.swift
|
115
|
-
- XCFit_Templates/XCFit/iOS Acceptance Testing Bundle.xctemplate/TemplateIcon-old.icns
|
116
|
-
- XCFit_Templates/XCFit/iOS Acceptance Testing Bundle.xctemplate/TemplateIcon.png
|
117
|
-
- XCFit_Templates/XCFit/iOS Acceptance Testing Bundle.xctemplate/TemplateIcon@2x.png
|
118
|
-
- XCFit_Templates/XCFit/iOS Acceptance Testing Bundle.xctemplate/TemplateInfo.plist
|
119
|
-
- XCFit_Templates/XCFit/iOS Acceptance Tests.xctemplate/TemplateIcon-old.icns
|
120
|
-
- XCFit_Templates/XCFit/iOS Acceptance Tests.xctemplate/TemplateIcon.png
|
121
|
-
- XCFit_Templates/XCFit/iOS Acceptance Tests.xctemplate/TemplateIcon@2x.png
|
122
|
-
- XCFit_Templates/XCFit/iOS Acceptance Tests.xctemplate/TemplateInfo.plist
|
123
105
|
- XCFit_Templates/XCFit/iOS UI Cucumberish Testing Bundle.xctemplate/TemplateInfo.plist
|
124
106
|
- XCFit_Templates/XCFit/iOS XCUI POM Test Bundle.xctemplate/TemplateInfo.plist
|
125
107
|
- bin/xcfit
|
Binary file
|
@@ -1,134 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
-
<plist version="1.0">
|
4
|
-
<dict>
|
5
|
-
<key>TargetOnly</key>
|
6
|
-
<true/>
|
7
|
-
<key>Macros</key>
|
8
|
-
<dict>
|
9
|
-
<key>POD_ABBREVIATION</key>
|
10
|
-
<string>OCSP</string>
|
11
|
-
<key>POD_PLATFORM_IDENTIFIER</key>
|
12
|
-
<string>___POD_PLATFORM_IDENTIFIER___</string>
|
13
|
-
<key>POD_NAME</key>
|
14
|
-
<string>OCSlimProjectTestBundleSupport</string>
|
15
|
-
<key>PRINCIPALCLASSNAME</key>
|
16
|
-
<string>OCSPTestSuite</string>
|
17
|
-
</dict>
|
18
|
-
<key>Kind</key>
|
19
|
-
<string>Xcode.Xcode3.ProjectTemplateUnitKind</string>
|
20
|
-
<key>Identifier</key>
|
21
|
-
<string>io.cleankit.baseAcceptanceTestsUnitTestBundle</string>
|
22
|
-
<key>Ancestors</key>
|
23
|
-
<array>
|
24
|
-
<string>com.apple.dt.unit.unitTestBundleBase</string>
|
25
|
-
</array>
|
26
|
-
<key>Targets</key>
|
27
|
-
<array>
|
28
|
-
<dict>
|
29
|
-
<key>BuildPhases</key>
|
30
|
-
<array>
|
31
|
-
<dict>
|
32
|
-
<key>Name</key>
|
33
|
-
<string>[___POD_ABBREVIATION___] Generate Fitnesse Test Bundle Resource File</string>
|
34
|
-
<key>Class</key>
|
35
|
-
<string>ShellScript</string>
|
36
|
-
<key>ShellPath</key>
|
37
|
-
<string>/bin/sh</string>
|
38
|
-
<key>ShellScript</key>
|
39
|
-
<string>FITNESSE_SUITE_NAME="___VARIABLE_fitnesseSuiteName___"
|
40
|
-
TEST_REPORT_FILE_PATH="${OCSP_TEST_REPORT_FILE_PATH}"
|
41
|
-
${OCSP_SUPPORT_FILE_DIR}/ocsp-generate-fitnesse-test-report.sh $FITNESSE_SUITE_NAME $TEST_REPORT_FILE_PATH</string>
|
42
|
-
</dict>
|
43
|
-
</array>
|
44
|
-
</dict>
|
45
|
-
</array>
|
46
|
-
<key>Options</key>
|
47
|
-
<array>
|
48
|
-
<dict>
|
49
|
-
<key>Identifier</key>
|
50
|
-
<string>languageChoice</string>
|
51
|
-
<key>Units</key>
|
52
|
-
<dict>
|
53
|
-
<key>Objective-C</key>
|
54
|
-
<dict>
|
55
|
-
<key>Definitions</key>
|
56
|
-
<dict>
|
57
|
-
<key>___PACKAGENAMEASIDENTIFIER___.m</key>
|
58
|
-
<dict>
|
59
|
-
<key>Path</key>
|
60
|
-
<string>___PACKAGENAMEASIDENTIFIER___.m</string>
|
61
|
-
</dict>
|
62
|
-
</dict>
|
63
|
-
<key>Nodes</key>
|
64
|
-
<array>
|
65
|
-
<string>___PACKAGENAMEASIDENTIFIER___.m</string>
|
66
|
-
</array>
|
67
|
-
</dict>
|
68
|
-
<key>Swift</key>
|
69
|
-
<dict>
|
70
|
-
<key>Definitions</key>
|
71
|
-
<dict>
|
72
|
-
<key>___PACKAGENAMEASIDENTIFIER___.swift</key>
|
73
|
-
<dict>
|
74
|
-
<key>Path</key>
|
75
|
-
<string>___PACKAGENAMEASIDENTIFIER___.swift</string>
|
76
|
-
</dict>
|
77
|
-
</dict>
|
78
|
-
<key>Nodes</key>
|
79
|
-
<array>
|
80
|
-
<string>___PACKAGENAMEASIDENTIFIER___.swift</string>
|
81
|
-
</array>
|
82
|
-
</dict>
|
83
|
-
</dict>
|
84
|
-
</dict>
|
85
|
-
<dict>
|
86
|
-
<key>SortOrder</key>
|
87
|
-
<integer>0</integer>
|
88
|
-
<key>EmptyReplacement</key>
|
89
|
-
<string><Required></string>
|
90
|
-
<key>Required</key>
|
91
|
-
<true/>
|
92
|
-
<key>Name</key>
|
93
|
-
<string>Fitnesse Suite Page Name:</string>
|
94
|
-
<key>Identifier</key>
|
95
|
-
<string>fitnesseSuiteName</string>
|
96
|
-
<key>Description</key>
|
97
|
-
<string>Your Fitnesse test suite's page name (e.g. FrontPage)</string>
|
98
|
-
<key>Type</key>
|
99
|
-
<string>text</string>
|
100
|
-
<key>NotPersisted</key>
|
101
|
-
<true/>
|
102
|
-
</dict>
|
103
|
-
<dict>
|
104
|
-
<key>SortOrder</key>
|
105
|
-
<integer>1</integer>
|
106
|
-
<key>Identifier</key>
|
107
|
-
<string>fitnesseURL</string>
|
108
|
-
<key>Name</key>
|
109
|
-
<string>Fitnesse Suite Test URL:</string>
|
110
|
-
<key>NotPersisted</key>
|
111
|
-
<true/>
|
112
|
-
<key>Description</key>
|
113
|
-
<string>Your fitnesse test suite URL</string>
|
114
|
-
<key>Default</key>
|
115
|
-
<string>http://localhost:8080/___VARIABLE_fitnesseSuiteName___?suite</string>
|
116
|
-
<key>Type</key>
|
117
|
-
<string>static</string>
|
118
|
-
</dict>
|
119
|
-
|
120
|
-
</array>
|
121
|
-
<key>Nodes</key>
|
122
|
-
<array>
|
123
|
-
<string>___POD_NAME___.m</string>
|
124
|
-
</array>
|
125
|
-
<key>Definitions</key>
|
126
|
-
<dict>
|
127
|
-
<key>___POD_NAME___.m</key>
|
128
|
-
<dict>
|
129
|
-
<key>Path</key>
|
130
|
-
<string>___POD_NAME___.m</string>
|
131
|
-
</dict>
|
132
|
-
</dict>
|
133
|
-
</dict>
|
134
|
-
</plist>
|
data/XCFit_Templates/XCFit/Base Acceptance Testing Bundle.xctemplate/___PACKAGENAMEASIDENTIFIER___.m
DELETED
@@ -1,17 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// ___FILENAME___
|
3
|
-
// ___PACKAGENAME___
|
4
|
-
//
|
5
|
-
// Created by ___FULLUSERNAME___ on ___DATE___.
|
6
|
-
//___COPYRIGHT___
|
7
|
-
//
|
8
|
-
|
9
|
-
#import <XCTest/XCTest.h>
|
10
|
-
|
11
|
-
@interface ___FILEBASENAMEASIDENTIFIER___ : XCTestCase
|
12
|
-
|
13
|
-
@end
|
14
|
-
|
15
|
-
@implementation ___FILEBASENAMEASIDENTIFIER___
|
16
|
-
|
17
|
-
@end
|
@@ -1,25 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// ___FILENAME___
|
3
|
-
// ___POD_NAME___
|
4
|
-
//
|
5
|
-
// Created by OCSlimProject on ___DATE___.
|
6
|
-
// MIT License
|
7
|
-
// © 2016 Paul Stringer
|
8
|
-
//
|
9
|
-
//
|
10
|
-
|
11
|
-
#if __has_include(<___POD_NAME___/___PRINCIPALCLASSNAME___.h>)
|
12
|
-
#else
|
13
|
-
#pragma GCC error "Target requires pod '___POD_NAME___'. Add the entry \"pod '___POD_NAME___'\" to your Podfile configuration."
|
14
|
-
#endif
|
15
|
-
|
16
|
-
/* Copy and paste this entry to your projects Podfile and run 'pod install' or 'pod update' as necessary
|
17
|
-
|
18
|
-
target '___PACKAGENAMEASIDENTIFIER___' do
|
19
|
-
platform :___POD_PLATFORM_IDENTIFIER___
|
20
|
-
pod '___POD_NAME___'
|
21
|
-
end
|
22
|
-
|
23
|
-
https://cocoapods.org/?q=___POD_NAME___
|
24
|
-
|
25
|
-
*/
|
data/XCFit_Templates/XCFit/Base Acceptance Tests.xctemplate/AcceptanceTests-Bridging-Header.h
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
#import "SlimTables.h"
|
@@ -1,35 +0,0 @@
|
|
1
|
-
import Foundation
|
2
|
-
|
3
|
-
@objc(FixtureExample)
|
4
|
-
|
5
|
-
class FixtureExample : NSObject, SlimDecisionTable {
|
6
|
-
|
7
|
-
//MARK: Inputs
|
8
|
-
|
9
|
-
var input = ""
|
10
|
-
|
11
|
-
//MARK: <SlimDecisionTable>
|
12
|
-
|
13
|
-
func execute() {
|
14
|
-
// 1. Prepare a System Under Test (SUT) using the given inputs.
|
15
|
-
// e.g. let system = MySystemUnderTestContext(input: input)
|
16
|
-
// 2. Run your SUT
|
17
|
-
// 3. Take values from the SUT and return via outputs
|
18
|
-
}
|
19
|
-
|
20
|
-
//MARK: Outputs
|
21
|
-
|
22
|
-
var output: NSString? {
|
23
|
-
get {
|
24
|
-
switch input {
|
25
|
-
case "foo":
|
26
|
-
return "bar"
|
27
|
-
case "bar":
|
28
|
-
return "baz"
|
29
|
-
default:
|
30
|
-
return nil
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
34
|
-
|
35
|
-
}
|
@@ -1,28 +0,0 @@
|
|
1
|
-
#import <Foundation/Foundation.h>
|
2
|
-
|
3
|
-
// Slim Decision Table
|
4
|
-
// http://www.fitnesse.org/FitNesse.UserGuide.WritingAcceptanceTests.SliM.DecisionTable
|
5
|
-
|
6
|
-
@protocol SlimDecisionTable <NSObject>
|
7
|
-
|
8
|
-
@optional
|
9
|
-
- (void)table:(NSArray*)table;
|
10
|
-
- (void)beginTable;
|
11
|
-
- (void)endTable;
|
12
|
-
- (void)reset;
|
13
|
-
@required
|
14
|
-
- (void)execute;
|
15
|
-
|
16
|
-
@end
|
17
|
-
|
18
|
-
// Slim Query Table
|
19
|
-
// http://www.fitnesse.org/FitNesse.UserGuide.WritingAcceptanceTests.SliM.QueryTable
|
20
|
-
|
21
|
-
@protocol SlimQueryTable <NSObject>
|
22
|
-
|
23
|
-
@optional
|
24
|
-
- (void)table:(NSArray*)table;
|
25
|
-
@required
|
26
|
-
- (NSArray*)query;
|
27
|
-
|
28
|
-
@end
|
@@ -1,155 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
-
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
3
|
-
<plist version="1.0">
|
4
|
-
<dict>
|
5
|
-
<key>Macros</key>
|
6
|
-
<dict>
|
7
|
-
<key>POD_ABBREVIATION</key>
|
8
|
-
<string>OCSP</string>
|
9
|
-
<key>POD_NAME</key>
|
10
|
-
<string>OCSlimProject</string>
|
11
|
-
<key>POD_PLATFORM_IDENTIFIER</key>
|
12
|
-
<string>___POD_PLATFORM_IDENTIFIER___</string>
|
13
|
-
</dict>
|
14
|
-
<key>Kind</key>
|
15
|
-
<string>Xcode.Xcode3.ProjectTemplateUnitKind</string>
|
16
|
-
<key>Swift</key>
|
17
|
-
<dict>
|
18
|
-
<key>Nodes</key>
|
19
|
-
<array/>
|
20
|
-
<key>Definitions</key>
|
21
|
-
<dict>
|
22
|
-
<key>___PACKAGENAMEASIDENTIFIER___.swift</key>
|
23
|
-
<dict>
|
24
|
-
<key>Path</key>
|
25
|
-
<string>___PACKAGENAMEASIDENTIFIER___.swift</string>
|
26
|
-
</dict>
|
27
|
-
</dict>
|
28
|
-
</dict>
|
29
|
-
<key>Ancestors</key>
|
30
|
-
<array>
|
31
|
-
<string>com.apple.dt.unit.applicationBase</string>
|
32
|
-
</array>
|
33
|
-
<key>Identifier</key>
|
34
|
-
<string>io.cleankit.baseAcceptanceTests</string>
|
35
|
-
<key>Concrete</key>
|
36
|
-
<false/>
|
37
|
-
<key>TargetOnly</key>
|
38
|
-
<true/>
|
39
|
-
<key>Targets</key>
|
40
|
-
<array>
|
41
|
-
<dict>
|
42
|
-
<key>ProductType</key>
|
43
|
-
<string>com.apple.product-type.application</string>
|
44
|
-
<key>SharedSettings</key>
|
45
|
-
<dict>
|
46
|
-
<key>LD_RUNPATH_SEARCH_PATHS</key>
|
47
|
-
<string>$(inherited) @executable_path/../Frameworks</string>
|
48
|
-
<key>SWIFT_OBJC_BRIDGING_HEADER</key>
|
49
|
-
<string>___PACKAGENAMEASIDENTIFIER___/___PACKAGENAMEASIDENTIFIER___-Bridging-Header.h</string>
|
50
|
-
</dict>
|
51
|
-
<key>BuildPhases</key>
|
52
|
-
<array>
|
53
|
-
<dict>
|
54
|
-
<key>Name</key>
|
55
|
-
<string>[___POD_ABBREVIATION___] Generate Fitnesse Test System Scripts</string>
|
56
|
-
<key>Class</key>
|
57
|
-
<string>ShellScript</string>
|
58
|
-
<key>ShellPath</key>
|
59
|
-
<string>/bin/sh</string>
|
60
|
-
<key>ShellScript</key>
|
61
|
-
<string>${OCSP_SUPPORT_FILE_DIR}/ocsp-generate-fitnesse-test-system-scripts.sh "${OCSP_BUNDLE_RESOURCES_DIR}"</string>
|
62
|
-
</dict>
|
63
|
-
</array>
|
64
|
-
</dict>
|
65
|
-
</array>
|
66
|
-
<key>Nodes</key>
|
67
|
-
<array>
|
68
|
-
<string>___PACKAGENAMEASIDENTIFIER___-Bridging-Header.h</string>
|
69
|
-
<string>___PACKAGENAMEASIDENTIFIER___.m</string>
|
70
|
-
<string>FixtureExample.swift</string>
|
71
|
-
<string>SlimTables.h</string>
|
72
|
-
<string>Info.plist:PackageType</string>
|
73
|
-
</array>
|
74
|
-
<key>Definitions</key>
|
75
|
-
<dict>
|
76
|
-
<key>___PACKAGENAMEASIDENTIFIER___-Bridging-Header.h</key>
|
77
|
-
<dict>
|
78
|
-
<key>Path</key>
|
79
|
-
<string>___PACKAGENAMEASIDENTIFIER___-Bridging-Header.h</string>
|
80
|
-
<key>Group</key>
|
81
|
-
<string>Supporting Files</string>
|
82
|
-
<key>SortOrder</key>
|
83
|
-
<integer>100</integer>
|
84
|
-
</dict>
|
85
|
-
<key>___PACKAGENAMEASIDENTIFIER___.m</key>
|
86
|
-
<dict>
|
87
|
-
<key>Path</key>
|
88
|
-
<string>___PACKAGENAMEASIDENTIFIER___.m</string>
|
89
|
-
<key>Group</key>
|
90
|
-
<string>Supporting Files</string>
|
91
|
-
</dict>
|
92
|
-
<key>FixtureExample.swift</key>
|
93
|
-
<dict>
|
94
|
-
<key>Path</key>
|
95
|
-
<string>FixtureExample.swift</string>
|
96
|
-
<key>Group</key>
|
97
|
-
<string>Fixtures</string>
|
98
|
-
</dict>
|
99
|
-
<key>SlimTables.h</key>
|
100
|
-
<dict>
|
101
|
-
<key>Path</key>
|
102
|
-
<string>SlimTables.h</string>
|
103
|
-
<key>Group</key>
|
104
|
-
<string>Supporting Files</string>
|
105
|
-
</dict>
|
106
|
-
<key>Info.plist:PackageType</key>
|
107
|
-
<string><key>CFBundlePackageType</key>
|
108
|
-
<string>APPL</string>
|
109
|
-
</string>
|
110
|
-
</dict>
|
111
|
-
<key>Options</key>
|
112
|
-
<array>
|
113
|
-
<dict>
|
114
|
-
<key>Identifier</key>
|
115
|
-
<string>languageChoice</string>
|
116
|
-
<key>Units</key>
|
117
|
-
<dict>
|
118
|
-
<key>Swift</key>
|
119
|
-
<dict>
|
120
|
-
<key>Project</key>
|
121
|
-
<dict>
|
122
|
-
<key>Configurations</key>
|
123
|
-
<dict>
|
124
|
-
<key>Debug</key>
|
125
|
-
<dict>
|
126
|
-
<key>SWIFT_OPTIMIZATION_LEVEL</key>
|
127
|
-
<string>-Onone</string>
|
128
|
-
<key>SWIFT_ACTIVE_COMPILATION_CONDITIONS</key>
|
129
|
-
<string>DEBUG</string>
|
130
|
-
</dict>
|
131
|
-
<key>Release</key>
|
132
|
-
<dict>
|
133
|
-
<key>SWIFT_OPTIMIZATION_LEVEL</key>
|
134
|
-
<string>-Owholemodule</string>
|
135
|
-
</dict>
|
136
|
-
</dict>
|
137
|
-
</dict>
|
138
|
-
<key>Targets</key>
|
139
|
-
<array>
|
140
|
-
<dict>
|
141
|
-
<key>Concrete</key>
|
142
|
-
<false/>
|
143
|
-
<key>SharedSettings</key>
|
144
|
-
<dict>
|
145
|
-
<key>SWIFT_VERSION</key>
|
146
|
-
<string>3.0</string>
|
147
|
-
</dict>
|
148
|
-
</dict>
|
149
|
-
</array>
|
150
|
-
</dict>
|
151
|
-
</dict>
|
152
|
-
</dict>
|
153
|
-
</array>
|
154
|
-
</dict>
|
155
|
-
</plist>
|