iut 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (73) hide show
  1. data/.gitignore +9 -0
  2. data/Gemfile +4 -0
  3. data/Rakefile +1 -0
  4. data/bin/iut +2 -0
  5. data/iut.gemspec +24 -0
  6. data/lib/iut.rb +17 -0
  7. data/lib/iut/generator.rb +28 -0
  8. data/lib/iut/version.rb +4 -0
  9. data/template/project/iUnitTest/iUnitTest.xcodeproj/project.pbxproj +480 -0
  10. data/template/project/iUnitTest/iUnitTest/Classes/.do_not_remove_this_directory +0 -0
  11. data/template/project/iUnitTest/iUnitTest/Tests/.do_not_remove_this_directory +0 -0
  12. data/template/project/iUnitTest/iUnitTest/en.lproj/InfoPlist.strings +2 -0
  13. data/template/project/iUnitTest/iUnitTest/iUnitTest-Info.plist +44 -0
  14. data/template/project/iUnitTest/iUnitTest/iUnitTest-Prefix.pch +14 -0
  15. data/template/project/iUnitTest/iUnitTest/iunittest/Default.png +0 -0
  16. data/template/project/iUnitTest/iUnitTest/iunittest/IUTAppDelegate.h +20 -0
  17. data/template/project/iUnitTest/iUnitTest/iunittest/IUTAppDelegate.m +38 -0
  18. data/template/project/iUnitTest/iUnitTest/iunittest/IUTDetailView.xib +184 -0
  19. data/template/project/iUnitTest/iUnitTest/iunittest/IUTMainWindow.xib +732 -0
  20. data/template/project/iUnitTest/iUnitTest/iunittest/IUTTestView.xib +432 -0
  21. data/template/project/iUnitTest/iUnitTest/iunittest/Settings.bundle/Japanese.lproj/Root.strings +0 -0
  22. data/template/project/iUnitTest/iUnitTest/iunittest/Settings.bundle/Root.plist +39 -0
  23. data/template/project/iUnitTest/iUnitTest/iunittest/Settings.bundle/en.lproj/Root.strings +0 -0
  24. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/AppAgent.h +33 -0
  25. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/AppAgent.m +135 -0
  26. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/AppAgentHelper.h +63 -0
  27. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UINavigationBarBasedTest.h +25 -0
  28. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UINavigationBarBasedTest.m +49 -0
  29. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UITabBarAndNavigationBarBasedTest.h +23 -0
  30. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UITabBarAndNavigationBarBasedTest.m +42 -0
  31. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UITabBarBasedTest.h +25 -0
  32. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UITabBarBasedTest.m +50 -0
  33. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UITableViewBasedTest.h +23 -0
  34. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UITableViewBasedTest.m +57 -0
  35. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UITableViewControllerTest.h +22 -0
  36. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UITableViewControllerTest.m +44 -0
  37. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UIViewBasedTest.h +21 -0
  38. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UIViewBasedTest.m +52 -0
  39. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UIViewControllerTest.h +63 -0
  40. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/ControllerTest/UIViewControllerTest.m +162 -0
  41. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/GTMSenTestCase.h +17 -0
  42. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/GTMSenTestCase.m +15 -0
  43. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTAssertion.h +135 -0
  44. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTAssertion.m +216 -0
  45. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTAssertionInfo.h +60 -0
  46. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTAssertionInfo.m +104 -0
  47. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTDetailViewController.h +24 -0
  48. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTDetailViewController.m +81 -0
  49. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTLog.h +14 -0
  50. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTPreference.h +34 -0
  51. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTPreference.m +125 -0
  52. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTResultTableViewCell.h +27 -0
  53. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTResultTableViewCell.m +83 -0
  54. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTResultTableViewController.h +26 -0
  55. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTResultTableViewController.m +193 -0
  56. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTTest.h +74 -0
  57. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTTest.m +127 -0
  58. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTTestRunner.h +66 -0
  59. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTTestRunner.m +449 -0
  60. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTTestRunnerViewController.h +59 -0
  61. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/IUTTestRunnerViewController.m +163 -0
  62. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/NSExceptionExtension.h +21 -0
  63. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/NSExceptionExtension.m +52 -0
  64. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/SenTestAssertion.h +82 -0
  65. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/SourceCodeOpener.h +65 -0
  66. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/SourceCodeOpener.m +176 -0
  67. data/template/project/iUnitTest/iUnitTest/iunittest/UnitTest/UITableViewControllerTestHelper.h +35 -0
  68. data/template/project/iUnitTest/iUnitTest/iunittest/isd_logo_60x40.png +0 -0
  69. data/template/project/iUnitTest/iUnitTest/iunittest/isd_logo_60x40_w.png +0 -0
  70. data/template/project/iUnitTest/iUnitTest/iunittest/iunittest_icon.png +0 -0
  71. data/template/project/iUnitTest/iUnitTest/main.m +18 -0
  72. data/template/project/iUnitTest/script/sync_source.rb +27 -0
  73. metadata +119 -0
@@ -0,0 +1,432 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.03">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">528</int>
5
+ <string key="IBDocument.SystemVersion">9G55</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">677</string>
7
+ <string key="IBDocument.AppKitVersion">949.43</string>
8
+ <string key="IBDocument.HIToolboxVersion">353.00</string>
9
+ <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
10
+ <bool key="EncodedWithXMLCoder">YES</bool>
11
+ <integer value="3"/>
12
+ </object>
13
+ <object class="NSArray" key="IBDocument.PluginDependencies">
14
+ <bool key="EncodedWithXMLCoder">YES</bool>
15
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
16
+ </object>
17
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
18
+ <bool key="EncodedWithXMLCoder">YES</bool>
19
+ <object class="NSArray" key="dict.sortedKeys">
20
+ <bool key="EncodedWithXMLCoder">YES</bool>
21
+ </object>
22
+ <object class="NSMutableArray" key="dict.values">
23
+ <bool key="EncodedWithXMLCoder">YES</bool>
24
+ </object>
25
+ </object>
26
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
27
+ <bool key="EncodedWithXMLCoder">YES</bool>
28
+ <object class="IBProxyObject" id="372490531">
29
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
30
+ </object>
31
+ <object class="IBProxyObject" id="975951072">
32
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
33
+ </object>
34
+ <object class="IBUIView" id="570983613">
35
+ <reference key="NSNextResponder"/>
36
+ <int key="NSvFlags">274</int>
37
+ <object class="NSMutableArray" key="NSSubviews">
38
+ <bool key="EncodedWithXMLCoder">YES</bool>
39
+ <object class="IBUIProgressView" id="504142731">
40
+ <reference key="NSNextResponder" ref="570983613"/>
41
+ <int key="NSvFlags">292</int>
42
+ <string key="NSFrame">{{12, 9}, {227, 9}}</string>
43
+ <reference key="NSSuperview" ref="570983613"/>
44
+ <bool key="IBUIOpaque">NO</bool>
45
+ <bool key="IBUIClipsSubviews">YES</bool>
46
+ <float key="IBUIAlpha">9.929578e-01</float>
47
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
48
+ </object>
49
+ <object class="IBUIButton" id="46971537">
50
+ <reference key="NSNextResponder" ref="570983613"/>
51
+ <int key="NSvFlags">292</int>
52
+ <string key="NSFrame">{{247, 9}, {60, 28}}</string>
53
+ <reference key="NSSuperview" ref="570983613"/>
54
+ <bool key="IBUIOpaque">NO</bool>
55
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
56
+ <int key="IBUIContentHorizontalAlignment">0</int>
57
+ <int key="IBUIContentVerticalAlignment">0</int>
58
+ <object class="NSFont" key="IBUIFont">
59
+ <string key="NSName">Helvetica-Bold</string>
60
+ <double key="NSSize">1.500000e+01</double>
61
+ <int key="NSfFlags">16</int>
62
+ </object>
63
+ <int key="IBUIButtonType">1</int>
64
+ <string key="IBUIHighlightedTitle"/>
65
+ <string key="IBUIDisabledTitle"/>
66
+ <string key="IBUISelectedTitle"/>
67
+ <string key="IBUINormalTitle"/>
68
+ <object class="NSColor" key="IBUIHighlightedTitleColor">
69
+ <int key="NSColorSpace">1</int>
70
+ <bytes key="NSRGB">MSAxIDEAA</bytes>
71
+ </object>
72
+ <object class="NSColor" key="IBUIDisabledTitleColor">
73
+ <int key="NSColorSpace">1</int>
74
+ <bytes key="NSRGB">MC44MDAwMDAwMSAwLjgwMDAwMDAxIDAuODAwMDAwMDEAA</bytes>
75
+ </object>
76
+ <object class="NSColor" key="IBUINormalTitleColor">
77
+ <int key="NSColorSpace">1</int>
78
+ <bytes key="NSRGB">MC4xOTYwNzg0MyAwLjMwOTgwMzkzIDAuNTIxNTY4NjYAA</bytes>
79
+ </object>
80
+ </object>
81
+ <object class="IBUIActivityIndicatorView" id="682567177">
82
+ <reference key="NSNextResponder" ref="570983613"/>
83
+ <int key="NSvFlags">292</int>
84
+ <string key="NSFrame">{{13, 19}, {20, 20}}</string>
85
+ <reference key="NSSuperview" ref="570983613"/>
86
+ <bool key="IBUIOpaque">NO</bool>
87
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
88
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
89
+ <bool key="IBUIHidesWhenStopped">NO</bool>
90
+ <int key="IBUIStyle">2</int>
91
+ </object>
92
+ <object class="IBUILabel" id="960644050">
93
+ <reference key="NSNextResponder" ref="570983613"/>
94
+ <int key="NSvFlags">292</int>
95
+ <string key="NSFrame">{{12, 20}, {227, 17}}</string>
96
+ <reference key="NSSuperview" ref="570983613"/>
97
+ <bool key="IBUIOpaque">NO</bool>
98
+ <bool key="IBUIClipsSubviews">YES</bool>
99
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
100
+ <string key="IBUIText">Label</string>
101
+ <object class="NSColor" key="IBUITextColor">
102
+ <int key="NSColorSpace">1</int>
103
+ <bytes key="NSRGB">MCAwIDAAA</bytes>
104
+ </object>
105
+ <nil key="IBUIHighlightedColor"/>
106
+ <int key="IBUIBaselineAdjustment">1</int>
107
+ <float key="IBUIMinimumFontSize">1.000000e+01</float>
108
+ </object>
109
+ <object class="IBUIToolbar" id="528200171">
110
+ <reference key="NSNextResponder" ref="570983613"/>
111
+ <int key="NSvFlags">266</int>
112
+ <string key="NSFrame">{{0, 416}, {320, 44}}</string>
113
+ <reference key="NSSuperview" ref="570983613"/>
114
+ <bool key="IBUIOpaque">NO</bool>
115
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
116
+ <object class="NSMutableArray" key="IBUIItems">
117
+ <bool key="EncodedWithXMLCoder">YES</bool>
118
+ <object class="IBUIBarButtonItem" id="772534836">
119
+ <string key="IBUITitle">ALL</string>
120
+ <int key="IBUIStyle">1</int>
121
+ <reference key="IBUIToolbar" ref="528200171"/>
122
+ </object>
123
+ </object>
124
+ </object>
125
+ <object class="IBUIImageView" id="108475303">
126
+ <reference key="NSNextResponder" ref="570983613"/>
127
+ <int key="NSvFlags">265</int>
128
+ <string key="NSFrame">{{260, 420}, {60, 40}}</string>
129
+ <reference key="NSSuperview" ref="570983613"/>
130
+ <bool key="IBUIOpaque">NO</bool>
131
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
132
+ <int key="IBUIContentMode">4</int>
133
+ <bool key="IBUIUserInteractionEnabled">NO</bool>
134
+ <object class="NSCustomResource" key="IBUIImage">
135
+ <string key="NSClassName">NSImage</string>
136
+ <string key="NSResourceName">isd_logo_60x40_w.png</string>
137
+ </object>
138
+ </object>
139
+ </object>
140
+ <string key="NSFrameSize">{320, 460}</string>
141
+ <reference key="NSSuperview"/>
142
+ <object class="NSColor" key="IBUIBackgroundColor">
143
+ <int key="NSColorSpace">1</int>
144
+ <bytes key="NSRGB">MC45MDE5NjA3OSAwLjkwMTk2MDc5IDAuOTAxOTYwNzkAA</bytes>
145
+ </object>
146
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
147
+ <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
148
+ </object>
149
+ </object>
150
+ <object class="IBObjectContainer" key="IBDocument.Objects">
151
+ <object class="NSMutableArray" key="connectionRecords">
152
+ <bool key="EncodedWithXMLCoder">YES</bool>
153
+ <object class="IBConnectionRecord">
154
+ <object class="IBCocoaTouchOutletConnection" key="connection">
155
+ <string key="label">view</string>
156
+ <reference key="source" ref="372490531"/>
157
+ <reference key="destination" ref="570983613"/>
158
+ </object>
159
+ <int key="connectionID">9</int>
160
+ </object>
161
+ <object class="IBConnectionRecord">
162
+ <object class="IBCocoaTouchOutletConnection" key="connection">
163
+ <string key="label">progressView</string>
164
+ <reference key="source" ref="372490531"/>
165
+ <reference key="destination" ref="504142731"/>
166
+ </object>
167
+ <int key="connectionID">10</int>
168
+ </object>
169
+ <object class="IBConnectionRecord">
170
+ <object class="IBCocoaTouchOutletConnection" key="connection">
171
+ <string key="label">startStopButton</string>
172
+ <reference key="source" ref="372490531"/>
173
+ <reference key="destination" ref="46971537"/>
174
+ </object>
175
+ <int key="connectionID">12</int>
176
+ </object>
177
+ <object class="IBConnectionRecord">
178
+ <object class="IBCocoaTouchOutletConnection" key="connection">
179
+ <string key="label">indicatorView</string>
180
+ <reference key="source" ref="372490531"/>
181
+ <reference key="destination" ref="682567177"/>
182
+ </object>
183
+ <int key="connectionID">13</int>
184
+ </object>
185
+ <object class="IBConnectionRecord">
186
+ <object class="IBCocoaTouchOutletConnection" key="connection">
187
+ <string key="label">resultLabel</string>
188
+ <reference key="source" ref="372490531"/>
189
+ <reference key="destination" ref="960644050"/>
190
+ </object>
191
+ <int key="connectionID">14</int>
192
+ </object>
193
+ <object class="IBConnectionRecord">
194
+ <object class="IBCocoaTouchEventConnection" key="connection">
195
+ <string key="label">startStopAction:</string>
196
+ <reference key="source" ref="46971537"/>
197
+ <reference key="destination" ref="372490531"/>
198
+ <int key="IBEventType">7</int>
199
+ </object>
200
+ <int key="connectionID">15</int>
201
+ </object>
202
+ <object class="IBConnectionRecord">
203
+ <object class="IBCocoaTouchOutletConnection" key="connection">
204
+ <string key="label">allButton</string>
205
+ <reference key="source" ref="372490531"/>
206
+ <reference key="destination" ref="772534836"/>
207
+ </object>
208
+ <int key="connectionID">43</int>
209
+ </object>
210
+ <object class="IBConnectionRecord">
211
+ <object class="IBCocoaTouchEventConnection" key="connection">
212
+ <string key="label">clearPassedTestsAction:</string>
213
+ <reference key="source" ref="772534836"/>
214
+ <reference key="destination" ref="372490531"/>
215
+ </object>
216
+ <int key="connectionID">44</int>
217
+ </object>
218
+ </object>
219
+ <object class="IBMutableOrderedSet" key="objectRecords">
220
+ <object class="NSArray" key="orderedObjects">
221
+ <bool key="EncodedWithXMLCoder">YES</bool>
222
+ <object class="IBObjectRecord">
223
+ <int key="objectID">0</int>
224
+ <object class="NSArray" key="object" id="360949347">
225
+ <bool key="EncodedWithXMLCoder">YES</bool>
226
+ </object>
227
+ <reference key="children" ref="1000"/>
228
+ <nil key="parent"/>
229
+ </object>
230
+ <object class="IBObjectRecord">
231
+ <int key="objectID">-1</int>
232
+ <reference key="object" ref="372490531"/>
233
+ <reference key="parent" ref="360949347"/>
234
+ <string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
235
+ </object>
236
+ <object class="IBObjectRecord">
237
+ <int key="objectID">-2</int>
238
+ <reference key="object" ref="975951072"/>
239
+ <reference key="parent" ref="360949347"/>
240
+ </object>
241
+ <object class="IBObjectRecord">
242
+ <int key="objectID">3</int>
243
+ <reference key="object" ref="570983613"/>
244
+ <object class="NSMutableArray" key="children">
245
+ <bool key="EncodedWithXMLCoder">YES</bool>
246
+ <reference ref="46971537"/>
247
+ <reference ref="504142731"/>
248
+ <reference ref="960644050"/>
249
+ <reference ref="682567177"/>
250
+ <reference ref="528200171"/>
251
+ <reference ref="108475303"/>
252
+ </object>
253
+ <reference key="parent" ref="360949347"/>
254
+ </object>
255
+ <object class="IBObjectRecord">
256
+ <int key="objectID">4</int>
257
+ <reference key="object" ref="960644050"/>
258
+ <reference key="parent" ref="570983613"/>
259
+ </object>
260
+ <object class="IBObjectRecord">
261
+ <int key="objectID">5</int>
262
+ <reference key="object" ref="46971537"/>
263
+ <reference key="parent" ref="570983613"/>
264
+ </object>
265
+ <object class="IBObjectRecord">
266
+ <int key="objectID">6</int>
267
+ <reference key="object" ref="682567177"/>
268
+ <reference key="parent" ref="570983613"/>
269
+ </object>
270
+ <object class="IBObjectRecord">
271
+ <int key="objectID">8</int>
272
+ <reference key="object" ref="504142731"/>
273
+ <reference key="parent" ref="570983613"/>
274
+ </object>
275
+ <object class="IBObjectRecord">
276
+ <int key="objectID">40</int>
277
+ <reference key="object" ref="528200171"/>
278
+ <object class="NSMutableArray" key="children">
279
+ <bool key="EncodedWithXMLCoder">YES</bool>
280
+ <reference ref="772534836"/>
281
+ </object>
282
+ <reference key="parent" ref="570983613"/>
283
+ </object>
284
+ <object class="IBObjectRecord">
285
+ <int key="objectID">37</int>
286
+ <reference key="object" ref="108475303"/>
287
+ <reference key="parent" ref="570983613"/>
288
+ </object>
289
+ <object class="IBObjectRecord">
290
+ <int key="objectID">42</int>
291
+ <reference key="object" ref="772534836"/>
292
+ <reference key="parent" ref="528200171"/>
293
+ </object>
294
+ </object>
295
+ </object>
296
+ <object class="NSMutableDictionary" key="flattenedProperties">
297
+ <bool key="EncodedWithXMLCoder">YES</bool>
298
+ <object class="NSMutableArray" key="dict.sortedKeys">
299
+ <bool key="EncodedWithXMLCoder">YES</bool>
300
+ <string>-1.CustomClassName</string>
301
+ <string>-2.CustomClassName</string>
302
+ <string>3.IBEditorWindowLastContentRect</string>
303
+ <string>3.IBPluginDependency</string>
304
+ <string>37.IBPluginDependency</string>
305
+ <string>4.IBPluginDependency</string>
306
+ <string>40.IBPluginDependency</string>
307
+ <string>42.IBPluginDependency</string>
308
+ <string>5.IBPluginDependency</string>
309
+ <string>6.IBPluginDependency</string>
310
+ <string>8.IBPluginDependency</string>
311
+ </object>
312
+ <object class="NSMutableArray" key="dict.values">
313
+ <bool key="EncodedWithXMLCoder">YES</bool>
314
+ <string>IUTTestRunnerViewController</string>
315
+ <string>UIResponder</string>
316
+ <string>{{48, 67}, {320, 480}}</string>
317
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
318
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
319
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
320
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
321
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
322
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
323
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
324
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
325
+ </object>
326
+ </object>
327
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
328
+ <bool key="EncodedWithXMLCoder">YES</bool>
329
+ <object class="NSArray" key="dict.sortedKeys">
330
+ <bool key="EncodedWithXMLCoder">YES</bool>
331
+ </object>
332
+ <object class="NSMutableArray" key="dict.values">
333
+ <bool key="EncodedWithXMLCoder">YES</bool>
334
+ </object>
335
+ </object>
336
+ <nil key="activeLocalization"/>
337
+ <object class="NSMutableDictionary" key="localizations">
338
+ <bool key="EncodedWithXMLCoder">YES</bool>
339
+ <object class="NSArray" key="dict.sortedKeys">
340
+ <bool key="EncodedWithXMLCoder">YES</bool>
341
+ </object>
342
+ <object class="NSMutableArray" key="dict.values">
343
+ <bool key="EncodedWithXMLCoder">YES</bool>
344
+ </object>
345
+ </object>
346
+ <nil key="sourceID"/>
347
+ <int key="maxID">44</int>
348
+ </object>
349
+ <object class="IBClassDescriber" key="IBDocument.Classes">
350
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
351
+ <bool key="EncodedWithXMLCoder">YES</bool>
352
+ <object class="IBPartialClassDescription">
353
+ <string key="className">IUTResultTableViewController</string>
354
+ <string key="superclassName">UITableViewController</string>
355
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
356
+ <string key="majorKey">IBProjectSource</string>
357
+ <string key="minorKey">../../iUnitTest/Classes/UnitTest/IUTResultTableViewController.h</string>
358
+ </object>
359
+ </object>
360
+ <object class="IBPartialClassDescription">
361
+ <string key="className">IUTResultTableViewController</string>
362
+ <string key="superclassName">UITableViewController</string>
363
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
364
+ <string key="majorKey">IBUserSource</string>
365
+ <string key="minorKey"/>
366
+ </object>
367
+ </object>
368
+ <object class="IBPartialClassDescription">
369
+ <string key="className">IUTTestRunnerViewController</string>
370
+ <string key="superclassName">UIViewController</string>
371
+ <object class="NSMutableDictionary" key="actions">
372
+ <bool key="EncodedWithXMLCoder">YES</bool>
373
+ <object class="NSMutableArray" key="dict.sortedKeys">
374
+ <bool key="EncodedWithXMLCoder">YES</bool>
375
+ <string>clearPassedTestsAction:</string>
376
+ <string>didTest:</string>
377
+ <string>startAction:</string>
378
+ <string>startStopAction:</string>
379
+ <string>stopAction:</string>
380
+ <string>willTest:</string>
381
+ </object>
382
+ <object class="NSMutableArray" key="dict.values">
383
+ <bool key="EncodedWithXMLCoder">YES</bool>
384
+ <string>id</string>
385
+ <string>id</string>
386
+ <string>id</string>
387
+ <string>id</string>
388
+ <string>id</string>
389
+ <string>id</string>
390
+ </object>
391
+ </object>
392
+ <object class="NSMutableDictionary" key="outlets">
393
+ <bool key="EncodedWithXMLCoder">YES</bool>
394
+ <object class="NSMutableArray" key="dict.sortedKeys">
395
+ <bool key="EncodedWithXMLCoder">YES</bool>
396
+ <string>allButton</string>
397
+ <string>indicatorView</string>
398
+ <string>progressView</string>
399
+ <string>resultLabel</string>
400
+ <string>resultTestViewController</string>
401
+ <string>startStopButton</string>
402
+ </object>
403
+ <object class="NSMutableArray" key="dict.values">
404
+ <bool key="EncodedWithXMLCoder">YES</bool>
405
+ <string>UIBarButtonItem</string>
406
+ <string>UIActivityIndicatorView</string>
407
+ <string>UIProgressView</string>
408
+ <string>UILabel</string>
409
+ <string>IUTResultTableViewController</string>
410
+ <string>UIButton</string>
411
+ </object>
412
+ </object>
413
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
414
+ <string key="majorKey">IBProjectSource</string>
415
+ <string key="minorKey">../../iUnitTest/Classes/UnitTest/IUTTestRunnerViewController.h</string>
416
+ </object>
417
+ </object>
418
+ <object class="IBPartialClassDescription">
419
+ <string key="className">IUTTestRunnerViewController</string>
420
+ <string key="superclassName">UIViewController</string>
421
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
422
+ <string key="majorKey">IBUserSource</string>
423
+ <string key="minorKey"/>
424
+ </object>
425
+ </object>
426
+ </object>
427
+ </object>
428
+ <int key="IBDocument.localizationMode">0</int>
429
+ <string key="IBDocument.LastKnownRelativeProjectPath">../tests/iUnitTestTest/iUnitTestTest.xcodeproj</string>
430
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
431
+ </data>
432
+ </archive>
@@ -0,0 +1,39 @@
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>Title</key>
6
+ <string>iUnitTest</string>
7
+ <key>StringsTable</key>
8
+ <string>Root</string>
9
+ <key>PreferenceSpecifiers</key>
10
+ <array>
11
+ <dict>
12
+ <key>Type</key>
13
+ <string>PSGroupSpecifier</string>
14
+ <key>Title</key>
15
+ <string>General</string>
16
+ </dict>
17
+ <dict>
18
+ <key>Type</key>
19
+ <string>PSToggleSwitchSpecifier</string>
20
+ <key>Title</key>
21
+ <string>Auto Run</string>
22
+ <key>Key</key>
23
+ <string>AUTO_RUN</string>
24
+ <key>DefaultValue</key>
25
+ <true/>
26
+ </dict>
27
+ <dict>
28
+ <key>Type</key>
29
+ <string>PSToggleSwitchSpecifier</string>
30
+ <key>Title</key>
31
+ <string>Run failures only</string>
32
+ <key>Key</key>
33
+ <string>RUN_FAILURES_ONLY</string>
34
+ <key>DefaultValue</key>
35
+ <true/>
36
+ </dict>
37
+ </array>
38
+ </dict>
39
+ </plist>