iut 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,2 @@
1
+ /* Localized versions of Info.plist keys */
2
+
@@ -0,0 +1,44 @@
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>CFBundleDevelopmentRegion</key>
6
+ <string>en</string>
7
+ <key>CFBundleDisplayName</key>
8
+ <string>${PRODUCT_NAME}</string>
9
+ <key>CFBundleExecutable</key>
10
+ <string>${EXECUTABLE_NAME}</string>
11
+ <key>CFBundleIconFiles</key>
12
+ <array/>
13
+ <key>CFBundleIdentifier</key>
14
+ <string>com.yourcompany.${PRODUCT_NAME:rfc1034identifier}</string>
15
+ <key>CFBundleInfoDictionaryVersion</key>
16
+ <string>6.0</string>
17
+ <key>CFBundleName</key>
18
+ <string>${PRODUCT_NAME}</string>
19
+ <key>CFBundlePackageType</key>
20
+ <string>APPL</string>
21
+ <key>CFBundleShortVersionString</key>
22
+ <string>1.0</string>
23
+ <key>CFBundleSignature</key>
24
+ <string>????</string>
25
+ <key>CFBundleVersion</key>
26
+ <string>1.0</string>
27
+ <key>LSRequiresIPhoneOS</key>
28
+ <true/>
29
+ <key>NSMainNibFile</key>
30
+ <string>IUTMainWindow</string>
31
+ <key>UIApplicationExitsOnSuspend</key>
32
+ <true/>
33
+ <key>UIRequiredDeviceCapabilities</key>
34
+ <array>
35
+ <string>armv7</string>
36
+ </array>
37
+ <key>UISupportedInterfaceOrientations</key>
38
+ <array>
39
+ <string>UIInterfaceOrientationPortrait</string>
40
+ <string>UIInterfaceOrientationLandscapeLeft</string>
41
+ <string>UIInterfaceOrientationLandscapeRight</string>
42
+ </array>
43
+ </dict>
44
+ </plist>
@@ -0,0 +1,14 @@
1
+ //
2
+ // Prefix header for all source files of the 'iUnitTest' target in the 'iUnitTest' project
3
+ //
4
+
5
+ #import <Availability.h>
6
+
7
+ #ifndef __IPHONE_3_0
8
+ #warning "This project uses features only available in iOS SDK 3.0 and later."
9
+ #endif
10
+
11
+ #ifdef __OBJC__
12
+ #import <UIKit/UIKit.h>
13
+ #import <Foundation/Foundation.h>
14
+ #endif
@@ -0,0 +1,20 @@
1
+ //
2
+ // AppDelegate.h
3
+ // iUnitTest
4
+ //
5
+ // Created by Katsuyoshi Ito on 09/01/16.
6
+ // Copyright 2009 ITO SOFT DESIGN Inc. All rights reserved.
7
+ //
8
+
9
+ #import <Foundation/Foundation.h>
10
+
11
+
12
+ @interface IUTAppDelegate : NSObject <UIApplicationDelegate> {
13
+ UIWindow *window;
14
+ UIViewController *viewController;
15
+ }
16
+
17
+ @property (nonatomic, retain) IBOutlet UIWindow *window;
18
+ @property (nonatomic, retain) IBOutlet UIViewController *viewController;
19
+
20
+ @end
@@ -0,0 +1,38 @@
1
+ //
2
+ // AppDelegate.m
3
+ // iUnitTest
4
+ //
5
+ // Created by Katsuyoshi Ito on 09/01/16.
6
+ // Copyright 2009 ITO SOFT DESIGN Inc. All rights reserved.
7
+ //
8
+
9
+ #import "IUTAppDelegate.h"
10
+ #import "SourceCodeOpener.h"
11
+
12
+ @implementation IUTAppDelegate
13
+
14
+ @synthesize window, viewController;
15
+
16
+ - (void)applicationDidFinishLaunching:(UIApplication *)application {
17
+
18
+ /* FIXME:
19
+ NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
20
+ [self setMyAppBoolProperty:[defaults boolForKey:MY_BOOL_PREF_KEY]];
21
+ */
22
+
23
+ // Override point for customization after application launch
24
+ [window addSubview:viewController.view];
25
+ [window makeKeyAndVisible];
26
+
27
+ SOURCE_CODE_OPENER_START();
28
+ }
29
+
30
+
31
+ - (void)dealloc {
32
+ [viewController.view removeFromSuperview];
33
+ [viewController release];
34
+ [window release];
35
+ [super dealloc];
36
+ }
37
+
38
+ @end
@@ -0,0 +1,184 @@
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
+ </object>
12
+ <object class="NSArray" key="IBDocument.PluginDependencies">
13
+ <bool key="EncodedWithXMLCoder">YES</bool>
14
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
15
+ </object>
16
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
17
+ <bool key="EncodedWithXMLCoder">YES</bool>
18
+ <object class="NSArray" key="dict.sortedKeys">
19
+ <bool key="EncodedWithXMLCoder">YES</bool>
20
+ </object>
21
+ <object class="NSMutableArray" key="dict.values">
22
+ <bool key="EncodedWithXMLCoder">YES</bool>
23
+ </object>
24
+ </object>
25
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
26
+ <bool key="EncodedWithXMLCoder">YES</bool>
27
+ <object class="IBProxyObject" id="372490531">
28
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
29
+ </object>
30
+ <object class="IBProxyObject" id="975951072">
31
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
32
+ </object>
33
+ <object class="IBUIView" id="191373211">
34
+ <nil key="NSNextResponder"/>
35
+ <int key="NSvFlags">292</int>
36
+ <object class="NSMutableArray" key="NSSubviews">
37
+ <bool key="EncodedWithXMLCoder">YES</bool>
38
+ <object class="IBUITextView" id="572040672">
39
+ <reference key="NSNextResponder" ref="191373211"/>
40
+ <int key="NSvFlags">274</int>
41
+ <string key="NSFrameSize">{320, 480}</string>
42
+ <reference key="NSSuperview" ref="191373211"/>
43
+ <bool key="IBUIOpaque">NO</bool>
44
+ <bool key="IBUIClipsSubviews">YES</bool>
45
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
46
+ <bool key="IBUIShowsHorizontalScrollIndicator">NO</bool>
47
+ <bool key="IBUIDelaysContentTouches">NO</bool>
48
+ <bool key="IBUICanCancelContentTouches">NO</bool>
49
+ <bool key="IBUIBouncesZoom">NO</bool>
50
+ <bool key="IBUIEditable">NO</bool>
51
+ <string key="IBUIText">Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda.</string>
52
+ </object>
53
+ </object>
54
+ <string key="NSFrameSize">{320, 480}</string>
55
+ <object class="NSColor" key="IBUIBackgroundColor">
56
+ <int key="NSColorSpace">3</int>
57
+ <bytes key="NSWhite">MQA</bytes>
58
+ <object class="NSColorSpace" key="NSCustomColorSpace">
59
+ <int key="NSID">2</int>
60
+ </object>
61
+ </object>
62
+ </object>
63
+ </object>
64
+ <object class="IBObjectContainer" key="IBDocument.Objects">
65
+ <object class="NSMutableArray" key="connectionRecords">
66
+ <bool key="EncodedWithXMLCoder">YES</bool>
67
+ <object class="IBConnectionRecord">
68
+ <object class="IBCocoaTouchOutletConnection" key="connection">
69
+ <string key="label">textView</string>
70
+ <reference key="source" ref="372490531"/>
71
+ <reference key="destination" ref="572040672"/>
72
+ </object>
73
+ <int key="connectionID">4</int>
74
+ </object>
75
+ <object class="IBConnectionRecord">
76
+ <object class="IBCocoaTouchOutletConnection" key="connection">
77
+ <string key="label">view</string>
78
+ <reference key="source" ref="372490531"/>
79
+ <reference key="destination" ref="191373211"/>
80
+ </object>
81
+ <int key="connectionID">6</int>
82
+ </object>
83
+ </object>
84
+ <object class="IBMutableOrderedSet" key="objectRecords">
85
+ <object class="NSArray" key="orderedObjects">
86
+ <bool key="EncodedWithXMLCoder">YES</bool>
87
+ <object class="IBObjectRecord">
88
+ <int key="objectID">0</int>
89
+ <object class="NSArray" key="object" id="360949347">
90
+ <bool key="EncodedWithXMLCoder">YES</bool>
91
+ </object>
92
+ <reference key="children" ref="1000"/>
93
+ <nil key="parent"/>
94
+ </object>
95
+ <object class="IBObjectRecord">
96
+ <int key="objectID">1</int>
97
+ <reference key="object" ref="191373211"/>
98
+ <object class="NSMutableArray" key="children">
99
+ <bool key="EncodedWithXMLCoder">YES</bool>
100
+ <reference ref="572040672"/>
101
+ </object>
102
+ <reference key="parent" ref="360949347"/>
103
+ </object>
104
+ <object class="IBObjectRecord">
105
+ <int key="objectID">-1</int>
106
+ <reference key="object" ref="372490531"/>
107
+ <reference key="parent" ref="360949347"/>
108
+ <string type="base64-UTF8" key="objectName">RmlsZSdzIE93bmVyA</string>
109
+ </object>
110
+ <object class="IBObjectRecord">
111
+ <int key="objectID">-2</int>
112
+ <reference key="object" ref="975951072"/>
113
+ <reference key="parent" ref="360949347"/>
114
+ </object>
115
+ <object class="IBObjectRecord">
116
+ <int key="objectID">3</int>
117
+ <reference key="object" ref="572040672"/>
118
+ <reference key="parent" ref="191373211"/>
119
+ </object>
120
+ </object>
121
+ </object>
122
+ <object class="NSMutableDictionary" key="flattenedProperties">
123
+ <bool key="EncodedWithXMLCoder">YES</bool>
124
+ <object class="NSMutableArray" key="dict.sortedKeys">
125
+ <bool key="EncodedWithXMLCoder">YES</bool>
126
+ <string>-1.CustomClassName</string>
127
+ <string>-2.CustomClassName</string>
128
+ <string>1.IBEditorWindowLastContentRect</string>
129
+ <string>1.IBPluginDependency</string>
130
+ <string>3.IBPluginDependency</string>
131
+ </object>
132
+ <object class="NSMutableArray" key="dict.values">
133
+ <bool key="EncodedWithXMLCoder">YES</bool>
134
+ <string>IUTDetailViewController</string>
135
+ <string>UIResponder</string>
136
+ <string>{{34, 2}, {320, 480}}</string>
137
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
138
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
139
+ </object>
140
+ </object>
141
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
142
+ <bool key="EncodedWithXMLCoder">YES</bool>
143
+ <object class="NSArray" key="dict.sortedKeys">
144
+ <bool key="EncodedWithXMLCoder">YES</bool>
145
+ </object>
146
+ <object class="NSMutableArray" key="dict.values">
147
+ <bool key="EncodedWithXMLCoder">YES</bool>
148
+ </object>
149
+ </object>
150
+ <nil key="activeLocalization"/>
151
+ <object class="NSMutableDictionary" key="localizations">
152
+ <bool key="EncodedWithXMLCoder">YES</bool>
153
+ <object class="NSArray" key="dict.sortedKeys">
154
+ <bool key="EncodedWithXMLCoder">YES</bool>
155
+ </object>
156
+ <object class="NSMutableArray" key="dict.values">
157
+ <bool key="EncodedWithXMLCoder">YES</bool>
158
+ </object>
159
+ </object>
160
+ <nil key="sourceID"/>
161
+ <int key="maxID">6</int>
162
+ </object>
163
+ <object class="IBClassDescriber" key="IBDocument.Classes">
164
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
165
+ <bool key="EncodedWithXMLCoder">YES</bool>
166
+ <object class="IBPartialClassDescription">
167
+ <string key="className">IUTDetailViewController</string>
168
+ <string key="superclassName">UIViewController</string>
169
+ <object class="NSMutableDictionary" key="outlets">
170
+ <string key="NS.key.0">textView</string>
171
+ <string key="NS.object.0">UITextView</string>
172
+ </object>
173
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
174
+ <string key="majorKey">IBUserSource</string>
175
+ <string key="minorKey"/>
176
+ </object>
177
+ </object>
178
+ </object>
179
+ </object>
180
+ <int key="IBDocument.localizationMode">0</int>
181
+ <string key="IBDocument.LastKnownRelativeProjectPath">iPhoneUnitTest.xcodeproj</string>
182
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
183
+ </data>
184
+ </archive>
@@ -0,0 +1,732 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <archive type="com.apple.InterfaceBuilder3.CocoaTouch.XIB" version="7.10">
3
+ <data>
4
+ <int key="IBDocument.SystemTarget">528</int>
5
+ <string key="IBDocument.SystemVersion">10F569</string>
6
+ <string key="IBDocument.InterfaceBuilderVersion">788</string>
7
+ <string key="IBDocument.AppKitVersion">1038.29</string>
8
+ <string key="IBDocument.HIToolboxVersion">461.00</string>
9
+ <object class="NSMutableDictionary" key="IBDocument.PluginVersions">
10
+ <string key="NS.key.0">com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
11
+ <string key="NS.object.0">117</string>
12
+ </object>
13
+ <object class="NSMutableArray" key="IBDocument.EditedObjectIDs">
14
+ <bool key="EncodedWithXMLCoder">YES</bool>
15
+ </object>
16
+ <object class="NSArray" key="IBDocument.PluginDependencies">
17
+ <bool key="EncodedWithXMLCoder">YES</bool>
18
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
19
+ </object>
20
+ <object class="NSMutableDictionary" key="IBDocument.Metadata">
21
+ <bool key="EncodedWithXMLCoder">YES</bool>
22
+ <object class="NSArray" key="dict.sortedKeys" id="0">
23
+ <bool key="EncodedWithXMLCoder">YES</bool>
24
+ </object>
25
+ <object class="NSMutableArray" key="dict.values">
26
+ <bool key="EncodedWithXMLCoder">YES</bool>
27
+ </object>
28
+ </object>
29
+ <object class="NSMutableArray" key="IBDocument.RootObjects" id="1000">
30
+ <bool key="EncodedWithXMLCoder">YES</bool>
31
+ <object class="IBProxyObject" id="841351856">
32
+ <string key="IBProxiedObjectIdentifier">IBFilesOwner</string>
33
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
34
+ </object>
35
+ <object class="IBProxyObject" id="427554174">
36
+ <string key="IBProxiedObjectIdentifier">IBFirstResponder</string>
37
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
38
+ </object>
39
+ <object class="IBUIWindow" id="380026005">
40
+ <nil key="NSNextResponder"/>
41
+ <int key="NSvFlags">1316</int>
42
+ <object class="NSPSMatrix" key="NSFrameMatrix"/>
43
+ <string key="NSFrameSize">{320, 480}</string>
44
+ <object class="NSColor" key="IBUIBackgroundColor">
45
+ <int key="NSColorSpace">1</int>
46
+ <bytes key="NSRGB">MSAxIDEAA</bytes>
47
+ </object>
48
+ <bool key="IBUIOpaque">NO</bool>
49
+ <bool key="IBUIClearsContextBeforeDrawing">NO</bool>
50
+ <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
51
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
52
+ </object>
53
+ <object class="IBUICustomObject" id="664661524">
54
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
55
+ </object>
56
+ <object class="IBUINavigationController" id="559144592">
57
+ <object class="IBUISimulatedNavigationBarMetrics" key="IBUISimulatedTopBarMetrics">
58
+ <bool key="IBUIPrompted">NO</bool>
59
+ </object>
60
+ <object class="IBUISimulatedStatusBarMetrics" key="IBUISimulatedStatusBarMetrics"/>
61
+ <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
62
+ <int key="interfaceOrientation">1</int>
63
+ </object>
64
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
65
+ <bool key="IBUIHorizontal">NO</bool>
66
+ <object class="IBUINavigationBar" key="IBUINavigationBar" id="663533963">
67
+ <nil key="NSNextResponder"/>
68
+ <int key="NSvFlags">256</int>
69
+ <string key="NSFrame">{{0, -44}, {0, 44}}</string>
70
+ <bool key="IBUIOpaque">NO</bool>
71
+ <bool key="IBUIClipsSubviews">YES</bool>
72
+ <bool key="IBUIMultipleTouchEnabled">YES</bool>
73
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
74
+ </object>
75
+ <object class="NSMutableArray" key="IBUIViewControllers">
76
+ <bool key="EncodedWithXMLCoder">YES</bool>
77
+ <object class="IBUIViewController" id="826589304">
78
+ <object class="IBUINavigationItem" key="IBUINavigationItem" id="34768728">
79
+ <string key="IBUITitle">iUnitTest</string>
80
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
81
+ </object>
82
+ <reference key="IBUIParentViewController" ref="559144592"/>
83
+ <string key="IBUINibName">IUTTestView</string>
84
+ <object class="IBUISimulatedOrientationMetrics" key="IBUISimulatedOrientationMetrics">
85
+ <int key="interfaceOrientation">1</int>
86
+ </object>
87
+ <string key="targetRuntimeIdentifier">IBCocoaTouchFramework</string>
88
+ <bool key="IBUIHorizontal">NO</bool>
89
+ </object>
90
+ </object>
91
+ </object>
92
+ </object>
93
+ <object class="IBObjectContainer" key="IBDocument.Objects">
94
+ <object class="NSMutableArray" key="connectionRecords">
95
+ <bool key="EncodedWithXMLCoder">YES</bool>
96
+ <object class="IBConnectionRecord">
97
+ <object class="IBCocoaTouchOutletConnection" key="connection">
98
+ <string key="label">delegate</string>
99
+ <reference key="source" ref="841351856"/>
100
+ <reference key="destination" ref="664661524"/>
101
+ </object>
102
+ <int key="connectionID">12</int>
103
+ </object>
104
+ <object class="IBConnectionRecord">
105
+ <object class="IBCocoaTouchOutletConnection" key="connection">
106
+ <string key="label">window</string>
107
+ <reference key="source" ref="664661524"/>
108
+ <reference key="destination" ref="380026005"/>
109
+ </object>
110
+ <int key="connectionID">15</int>
111
+ </object>
112
+ <object class="IBConnectionRecord">
113
+ <object class="IBCocoaTouchOutletConnection" key="connection">
114
+ <string key="label">viewController</string>
115
+ <reference key="source" ref="664661524"/>
116
+ <reference key="destination" ref="559144592"/>
117
+ </object>
118
+ <int key="connectionID">20</int>
119
+ </object>
120
+ </object>
121
+ <object class="IBMutableOrderedSet" key="objectRecords">
122
+ <object class="NSArray" key="orderedObjects">
123
+ <bool key="EncodedWithXMLCoder">YES</bool>
124
+ <object class="IBObjectRecord">
125
+ <int key="objectID">0</int>
126
+ <reference key="object" ref="0"/>
127
+ <reference key="children" ref="1000"/>
128
+ <nil key="parent"/>
129
+ </object>
130
+ <object class="IBObjectRecord">
131
+ <int key="objectID">2</int>
132
+ <reference key="object" ref="380026005"/>
133
+ <object class="NSMutableArray" key="children">
134
+ <bool key="EncodedWithXMLCoder">YES</bool>
135
+ </object>
136
+ <reference key="parent" ref="0"/>
137
+ </object>
138
+ <object class="IBObjectRecord">
139
+ <int key="objectID">-1</int>
140
+ <reference key="object" ref="841351856"/>
141
+ <reference key="parent" ref="0"/>
142
+ <string key="objectName">File's Owner</string>
143
+ </object>
144
+ <object class="IBObjectRecord">
145
+ <int key="objectID">-2</int>
146
+ <reference key="object" ref="427554174"/>
147
+ <reference key="parent" ref="0"/>
148
+ </object>
149
+ <object class="IBObjectRecord">
150
+ <int key="objectID">10</int>
151
+ <reference key="object" ref="664661524"/>
152
+ <reference key="parent" ref="0"/>
153
+ </object>
154
+ <object class="IBObjectRecord">
155
+ <int key="objectID">16</int>
156
+ <reference key="object" ref="559144592"/>
157
+ <object class="NSMutableArray" key="children">
158
+ <bool key="EncodedWithXMLCoder">YES</bool>
159
+ <reference ref="826589304"/>
160
+ <reference ref="663533963"/>
161
+ </object>
162
+ <reference key="parent" ref="0"/>
163
+ </object>
164
+ <object class="IBObjectRecord">
165
+ <int key="objectID">17</int>
166
+ <reference key="object" ref="826589304"/>
167
+ <object class="NSMutableArray" key="children">
168
+ <bool key="EncodedWithXMLCoder">YES</bool>
169
+ <reference ref="34768728"/>
170
+ </object>
171
+ <reference key="parent" ref="559144592"/>
172
+ </object>
173
+ <object class="IBObjectRecord">
174
+ <int key="objectID">18</int>
175
+ <reference key="object" ref="663533963"/>
176
+ <reference key="parent" ref="559144592"/>
177
+ </object>
178
+ <object class="IBObjectRecord">
179
+ <int key="objectID">19</int>
180
+ <reference key="object" ref="34768728"/>
181
+ <reference key="parent" ref="826589304"/>
182
+ </object>
183
+ </object>
184
+ </object>
185
+ <object class="NSMutableDictionary" key="flattenedProperties">
186
+ <bool key="EncodedWithXMLCoder">YES</bool>
187
+ <object class="NSArray" key="dict.sortedKeys">
188
+ <bool key="EncodedWithXMLCoder">YES</bool>
189
+ <string>-1.CustomClassName</string>
190
+ <string>-2.CustomClassName</string>
191
+ <string>10.CustomClassName</string>
192
+ <string>10.IBPluginDependency</string>
193
+ <string>16.IBEditorWindowLastContentRect</string>
194
+ <string>16.IBPluginDependency</string>
195
+ <string>17.CustomClassName</string>
196
+ <string>17.IBPluginDependency</string>
197
+ <string>18.IBPluginDependency</string>
198
+ <string>19.IBPluginDependency</string>
199
+ <string>2.IBAttributePlaceholdersKey</string>
200
+ <string>2.IBEditorWindowLastContentRect</string>
201
+ <string>2.IBPluginDependency</string>
202
+ </object>
203
+ <object class="NSMutableArray" key="dict.values">
204
+ <bool key="EncodedWithXMLCoder">YES</bool>
205
+ <string>UIApplication</string>
206
+ <string>UIResponder</string>
207
+ <string>IUTAppDelegate</string>
208
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
209
+ <string>{{10, 72}, {320, 480}}</string>
210
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
211
+ <string>IUTTestRunnerViewController</string>
212
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
213
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
214
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
215
+ <object class="NSMutableDictionary">
216
+ <bool key="EncodedWithXMLCoder">YES</bool>
217
+ <reference key="dict.sortedKeys" ref="0"/>
218
+ <object class="NSMutableArray" key="dict.values">
219
+ <bool key="EncodedWithXMLCoder">YES</bool>
220
+ </object>
221
+ </object>
222
+ <string>{{41, 104}, {320, 480}}</string>
223
+ <string>com.apple.InterfaceBuilder.IBCocoaTouchPlugin</string>
224
+ </object>
225
+ </object>
226
+ <object class="NSMutableDictionary" key="unlocalizedProperties">
227
+ <bool key="EncodedWithXMLCoder">YES</bool>
228
+ <reference key="dict.sortedKeys" ref="0"/>
229
+ <object class="NSMutableArray" key="dict.values">
230
+ <bool key="EncodedWithXMLCoder">YES</bool>
231
+ </object>
232
+ </object>
233
+ <nil key="activeLocalization"/>
234
+ <object class="NSMutableDictionary" key="localizations">
235
+ <bool key="EncodedWithXMLCoder">YES</bool>
236
+ <reference key="dict.sortedKeys" ref="0"/>
237
+ <object class="NSMutableArray" key="dict.values">
238
+ <bool key="EncodedWithXMLCoder">YES</bool>
239
+ </object>
240
+ </object>
241
+ <nil key="sourceID"/>
242
+ <int key="maxID">20</int>
243
+ </object>
244
+ <object class="IBClassDescriber" key="IBDocument.Classes">
245
+ <object class="NSMutableArray" key="referencedPartialClassDescriptions">
246
+ <bool key="EncodedWithXMLCoder">YES</bool>
247
+ <object class="IBPartialClassDescription">
248
+ <string key="className">IUTAppDelegate</string>
249
+ <string key="superclassName">NSObject</string>
250
+ <object class="NSMutableDictionary" key="outlets">
251
+ <bool key="EncodedWithXMLCoder">YES</bool>
252
+ <object class="NSArray" key="dict.sortedKeys">
253
+ <bool key="EncodedWithXMLCoder">YES</bool>
254
+ <string>viewController</string>
255
+ <string>window</string>
256
+ </object>
257
+ <object class="NSMutableArray" key="dict.values">
258
+ <bool key="EncodedWithXMLCoder">YES</bool>
259
+ <string>UIViewController</string>
260
+ <string>UIWindow</string>
261
+ </object>
262
+ </object>
263
+ <object class="NSMutableDictionary" key="toOneOutletInfosByName">
264
+ <bool key="EncodedWithXMLCoder">YES</bool>
265
+ <object class="NSArray" key="dict.sortedKeys">
266
+ <bool key="EncodedWithXMLCoder">YES</bool>
267
+ <string>viewController</string>
268
+ <string>window</string>
269
+ </object>
270
+ <object class="NSMutableArray" key="dict.values">
271
+ <bool key="EncodedWithXMLCoder">YES</bool>
272
+ <object class="IBToOneOutletInfo">
273
+ <string key="name">viewController</string>
274
+ <string key="candidateClassName">UIViewController</string>
275
+ </object>
276
+ <object class="IBToOneOutletInfo">
277
+ <string key="name">window</string>
278
+ <string key="candidateClassName">UIWindow</string>
279
+ </object>
280
+ </object>
281
+ </object>
282
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
283
+ <string key="majorKey">IBProjectSource</string>
284
+ <string key="minorKey">Classes/IUTAppDelegate.h</string>
285
+ </object>
286
+ </object>
287
+ <object class="IBPartialClassDescription">
288
+ <string key="className">IUTAppDelegate</string>
289
+ <string key="superclassName">NSObject</string>
290
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
291
+ <string key="majorKey">IBUserSource</string>
292
+ <string key="minorKey"/>
293
+ </object>
294
+ </object>
295
+ <object class="IBPartialClassDescription">
296
+ <string key="className">IUTResultTableViewController</string>
297
+ <string key="superclassName">UITableViewController</string>
298
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
299
+ <string key="majorKey">IBProjectSource</string>
300
+ <string key="minorKey">Classes/UnitTest/IUTResultTableViewController.h</string>
301
+ </object>
302
+ </object>
303
+ <object class="IBPartialClassDescription">
304
+ <string key="className">IUTResultTableViewController</string>
305
+ <string key="superclassName">UITableViewController</string>
306
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
307
+ <string key="majorKey">IBUserSource</string>
308
+ <string key="minorKey"/>
309
+ </object>
310
+ </object>
311
+ <object class="IBPartialClassDescription">
312
+ <string key="className">IUTTestRunnerViewController</string>
313
+ <string key="superclassName">UIViewController</string>
314
+ <object class="NSMutableDictionary" key="actions">
315
+ <bool key="EncodedWithXMLCoder">YES</bool>
316
+ <object class="NSArray" key="dict.sortedKeys">
317
+ <bool key="EncodedWithXMLCoder">YES</bool>
318
+ <string>clearPassedTestsAction:</string>
319
+ <string>didTest:</string>
320
+ <string>startAction:</string>
321
+ <string>startStopAction:</string>
322
+ <string>stopAction:</string>
323
+ <string>willTest:</string>
324
+ </object>
325
+ <object class="NSMutableArray" key="dict.values">
326
+ <bool key="EncodedWithXMLCoder">YES</bool>
327
+ <string>id</string>
328
+ <string>id</string>
329
+ <string>id</string>
330
+ <string>id</string>
331
+ <string>id</string>
332
+ <string>id</string>
333
+ </object>
334
+ </object>
335
+ <object class="NSMutableDictionary" key="actionInfosByName">
336
+ <bool key="EncodedWithXMLCoder">YES</bool>
337
+ <object class="NSArray" key="dict.sortedKeys">
338
+ <bool key="EncodedWithXMLCoder">YES</bool>
339
+ <string>clearPassedTestsAction:</string>
340
+ <string>didTest:</string>
341
+ <string>startAction:</string>
342
+ <string>startStopAction:</string>
343
+ <string>stopAction:</string>
344
+ <string>willTest:</string>
345
+ </object>
346
+ <object class="NSMutableArray" key="dict.values">
347
+ <bool key="EncodedWithXMLCoder">YES</bool>
348
+ <object class="IBActionInfo">
349
+ <string key="name">clearPassedTestsAction:</string>
350
+ <string key="candidateClassName">id</string>
351
+ </object>
352
+ <object class="IBActionInfo">
353
+ <string key="name">didTest:</string>
354
+ <string key="candidateClassName">id</string>
355
+ </object>
356
+ <object class="IBActionInfo">
357
+ <string key="name">startAction:</string>
358
+ <string key="candidateClassName">id</string>
359
+ </object>
360
+ <object class="IBActionInfo">
361
+ <string key="name">startStopAction:</string>
362
+ <string key="candidateClassName">id</string>
363
+ </object>
364
+ <object class="IBActionInfo">
365
+ <string key="name">stopAction:</string>
366
+ <string key="candidateClassName">id</string>
367
+ </object>
368
+ <object class="IBActionInfo">
369
+ <string key="name">willTest:</string>
370
+ <string key="candidateClassName">id</string>
371
+ </object>
372
+ </object>
373
+ </object>
374
+ <object class="NSMutableDictionary" key="outlets">
375
+ <bool key="EncodedWithXMLCoder">YES</bool>
376
+ <object class="NSArray" key="dict.sortedKeys">
377
+ <bool key="EncodedWithXMLCoder">YES</bool>
378
+ <string>allButton</string>
379
+ <string>indicatorView</string>
380
+ <string>progressView</string>
381
+ <string>resultLabel</string>
382
+ <string>resultTestViewController</string>
383
+ <string>startStopButton</string>
384
+ </object>
385
+ <object class="NSMutableArray" key="dict.values">
386
+ <bool key="EncodedWithXMLCoder">YES</bool>
387
+ <string>UIBarButtonItem</string>
388
+ <string>UIActivityIndicatorView</string>
389
+ <string>UIProgressView</string>
390
+ <string>UILabel</string>
391
+ <string>IUTResultTableViewController</string>
392
+ <string>UIButton</string>
393
+ </object>
394
+ </object>
395
+ <object class="NSMutableDictionary" key="toOneOutletInfosByName">
396
+ <bool key="EncodedWithXMLCoder">YES</bool>
397
+ <object class="NSArray" key="dict.sortedKeys">
398
+ <bool key="EncodedWithXMLCoder">YES</bool>
399
+ <string>allButton</string>
400
+ <string>indicatorView</string>
401
+ <string>progressView</string>
402
+ <string>resultLabel</string>
403
+ <string>resultTestViewController</string>
404
+ <string>startStopButton</string>
405
+ </object>
406
+ <object class="NSMutableArray" key="dict.values">
407
+ <bool key="EncodedWithXMLCoder">YES</bool>
408
+ <object class="IBToOneOutletInfo">
409
+ <string key="name">allButton</string>
410
+ <string key="candidateClassName">UIBarButtonItem</string>
411
+ </object>
412
+ <object class="IBToOneOutletInfo">
413
+ <string key="name">indicatorView</string>
414
+ <string key="candidateClassName">UIActivityIndicatorView</string>
415
+ </object>
416
+ <object class="IBToOneOutletInfo">
417
+ <string key="name">progressView</string>
418
+ <string key="candidateClassName">UIProgressView</string>
419
+ </object>
420
+ <object class="IBToOneOutletInfo">
421
+ <string key="name">resultLabel</string>
422
+ <string key="candidateClassName">UILabel</string>
423
+ </object>
424
+ <object class="IBToOneOutletInfo">
425
+ <string key="name">resultTestViewController</string>
426
+ <string key="candidateClassName">IUTResultTableViewController</string>
427
+ </object>
428
+ <object class="IBToOneOutletInfo">
429
+ <string key="name">startStopButton</string>
430
+ <string key="candidateClassName">UIButton</string>
431
+ </object>
432
+ </object>
433
+ </object>
434
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
435
+ <string key="majorKey">IBProjectSource</string>
436
+ <string key="minorKey">Classes/UnitTest/IUTTestRunnerViewController.h</string>
437
+ </object>
438
+ </object>
439
+ <object class="IBPartialClassDescription">
440
+ <string key="className">IUTTestRunnerViewController</string>
441
+ <string key="superclassName">UIViewController</string>
442
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
443
+ <string key="majorKey">IBUserSource</string>
444
+ <string key="minorKey"/>
445
+ </object>
446
+ </object>
447
+ </object>
448
+ <object class="NSMutableArray" key="referencedPartialClassDescriptionsV3.2+">
449
+ <bool key="EncodedWithXMLCoder">YES</bool>
450
+ <object class="IBPartialClassDescription">
451
+ <string key="className">NSObject</string>
452
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
453
+ <string key="majorKey">IBFrameworkSource</string>
454
+ <string key="minorKey">Foundation.framework/Headers/NSError.h</string>
455
+ </object>
456
+ </object>
457
+ <object class="IBPartialClassDescription">
458
+ <string key="className">NSObject</string>
459
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
460
+ <string key="majorKey">IBFrameworkSource</string>
461
+ <string key="minorKey">Foundation.framework/Headers/NSFileManager.h</string>
462
+ </object>
463
+ </object>
464
+ <object class="IBPartialClassDescription">
465
+ <string key="className">NSObject</string>
466
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
467
+ <string key="majorKey">IBFrameworkSource</string>
468
+ <string key="minorKey">Foundation.framework/Headers/NSKeyValueCoding.h</string>
469
+ </object>
470
+ </object>
471
+ <object class="IBPartialClassDescription">
472
+ <string key="className">NSObject</string>
473
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
474
+ <string key="majorKey">IBFrameworkSource</string>
475
+ <string key="minorKey">Foundation.framework/Headers/NSKeyValueObserving.h</string>
476
+ </object>
477
+ </object>
478
+ <object class="IBPartialClassDescription">
479
+ <string key="className">NSObject</string>
480
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
481
+ <string key="majorKey">IBFrameworkSource</string>
482
+ <string key="minorKey">Foundation.framework/Headers/NSKeyedArchiver.h</string>
483
+ </object>
484
+ </object>
485
+ <object class="IBPartialClassDescription">
486
+ <string key="className">NSObject</string>
487
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
488
+ <string key="majorKey">IBFrameworkSource</string>
489
+ <string key="minorKey">Foundation.framework/Headers/NSObject.h</string>
490
+ </object>
491
+ </object>
492
+ <object class="IBPartialClassDescription">
493
+ <string key="className">NSObject</string>
494
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
495
+ <string key="majorKey">IBFrameworkSource</string>
496
+ <string key="minorKey">Foundation.framework/Headers/NSRunLoop.h</string>
497
+ </object>
498
+ </object>
499
+ <object class="IBPartialClassDescription">
500
+ <string key="className">NSObject</string>
501
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
502
+ <string key="majorKey">IBFrameworkSource</string>
503
+ <string key="minorKey">Foundation.framework/Headers/NSThread.h</string>
504
+ </object>
505
+ </object>
506
+ <object class="IBPartialClassDescription">
507
+ <string key="className">NSObject</string>
508
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
509
+ <string key="majorKey">IBFrameworkSource</string>
510
+ <string key="minorKey">Foundation.framework/Headers/NSURL.h</string>
511
+ </object>
512
+ </object>
513
+ <object class="IBPartialClassDescription">
514
+ <string key="className">NSObject</string>
515
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
516
+ <string key="majorKey">IBFrameworkSource</string>
517
+ <string key="minorKey">Foundation.framework/Headers/NSURLConnection.h</string>
518
+ </object>
519
+ </object>
520
+ <object class="IBPartialClassDescription">
521
+ <string key="className">NSObject</string>
522
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
523
+ <string key="majorKey">IBFrameworkSource</string>
524
+ <string key="minorKey">UIKit.framework/Headers/UIAccessibility.h</string>
525
+ </object>
526
+ </object>
527
+ <object class="IBPartialClassDescription">
528
+ <string key="className">NSObject</string>
529
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
530
+ <string key="majorKey">IBFrameworkSource</string>
531
+ <string key="minorKey">UIKit.framework/Headers/UINibLoading.h</string>
532
+ </object>
533
+ </object>
534
+ <object class="IBPartialClassDescription">
535
+ <string key="className">NSObject</string>
536
+ <object class="IBClassDescriptionSource" key="sourceIdentifier" id="547848812">
537
+ <string key="majorKey">IBFrameworkSource</string>
538
+ <string key="minorKey">UIKit.framework/Headers/UIResponder.h</string>
539
+ </object>
540
+ </object>
541
+ <object class="IBPartialClassDescription">
542
+ <string key="className">UIActivityIndicatorView</string>
543
+ <string key="superclassName">UIView</string>
544
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
545
+ <string key="majorKey">IBFrameworkSource</string>
546
+ <string key="minorKey">UIKit.framework/Headers/UIActivityIndicatorView.h</string>
547
+ </object>
548
+ </object>
549
+ <object class="IBPartialClassDescription">
550
+ <string key="className">UIApplication</string>
551
+ <string key="superclassName">UIResponder</string>
552
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
553
+ <string key="majorKey">IBFrameworkSource</string>
554
+ <string key="minorKey">UIKit.framework/Headers/UIApplication.h</string>
555
+ </object>
556
+ </object>
557
+ <object class="IBPartialClassDescription">
558
+ <string key="className">UIBarButtonItem</string>
559
+ <string key="superclassName">UIBarItem</string>
560
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
561
+ <string key="majorKey">IBFrameworkSource</string>
562
+ <string key="minorKey">UIKit.framework/Headers/UIBarButtonItem.h</string>
563
+ </object>
564
+ </object>
565
+ <object class="IBPartialClassDescription">
566
+ <string key="className">UIBarItem</string>
567
+ <string key="superclassName">NSObject</string>
568
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
569
+ <string key="majorKey">IBFrameworkSource</string>
570
+ <string key="minorKey">UIKit.framework/Headers/UIBarItem.h</string>
571
+ </object>
572
+ </object>
573
+ <object class="IBPartialClassDescription">
574
+ <string key="className">UIButton</string>
575
+ <string key="superclassName">UIControl</string>
576
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
577
+ <string key="majorKey">IBFrameworkSource</string>
578
+ <string key="minorKey">UIKit.framework/Headers/UIButton.h</string>
579
+ </object>
580
+ </object>
581
+ <object class="IBPartialClassDescription">
582
+ <string key="className">UIControl</string>
583
+ <string key="superclassName">UIView</string>
584
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
585
+ <string key="majorKey">IBFrameworkSource</string>
586
+ <string key="minorKey">UIKit.framework/Headers/UIControl.h</string>
587
+ </object>
588
+ </object>
589
+ <object class="IBPartialClassDescription">
590
+ <string key="className">UILabel</string>
591
+ <string key="superclassName">UIView</string>
592
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
593
+ <string key="majorKey">IBFrameworkSource</string>
594
+ <string key="minorKey">UIKit.framework/Headers/UILabel.h</string>
595
+ </object>
596
+ </object>
597
+ <object class="IBPartialClassDescription">
598
+ <string key="className">UINavigationBar</string>
599
+ <string key="superclassName">UIView</string>
600
+ <object class="IBClassDescriptionSource" key="sourceIdentifier" id="979433550">
601
+ <string key="majorKey">IBFrameworkSource</string>
602
+ <string key="minorKey">UIKit.framework/Headers/UINavigationBar.h</string>
603
+ </object>
604
+ </object>
605
+ <object class="IBPartialClassDescription">
606
+ <string key="className">UINavigationController</string>
607
+ <string key="superclassName">UIViewController</string>
608
+ <object class="IBClassDescriptionSource" key="sourceIdentifier" id="119370389">
609
+ <string key="majorKey">IBFrameworkSource</string>
610
+ <string key="minorKey">UIKit.framework/Headers/UINavigationController.h</string>
611
+ </object>
612
+ </object>
613
+ <object class="IBPartialClassDescription">
614
+ <string key="className">UINavigationItem</string>
615
+ <string key="superclassName">NSObject</string>
616
+ <reference key="sourceIdentifier" ref="979433550"/>
617
+ </object>
618
+ <object class="IBPartialClassDescription">
619
+ <string key="className">UIProgressView</string>
620
+ <string key="superclassName">UIView</string>
621
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
622
+ <string key="majorKey">IBFrameworkSource</string>
623
+ <string key="minorKey">UIKit.framework/Headers/UIProgressView.h</string>
624
+ </object>
625
+ </object>
626
+ <object class="IBPartialClassDescription">
627
+ <string key="className">UIResponder</string>
628
+ <string key="superclassName">NSObject</string>
629
+ <reference key="sourceIdentifier" ref="547848812"/>
630
+ </object>
631
+ <object class="IBPartialClassDescription">
632
+ <string key="className">UISearchBar</string>
633
+ <string key="superclassName">UIView</string>
634
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
635
+ <string key="majorKey">IBFrameworkSource</string>
636
+ <string key="minorKey">UIKit.framework/Headers/UISearchBar.h</string>
637
+ </object>
638
+ </object>
639
+ <object class="IBPartialClassDescription">
640
+ <string key="className">UISearchDisplayController</string>
641
+ <string key="superclassName">NSObject</string>
642
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
643
+ <string key="majorKey">IBFrameworkSource</string>
644
+ <string key="minorKey">UIKit.framework/Headers/UISearchDisplayController.h</string>
645
+ </object>
646
+ </object>
647
+ <object class="IBPartialClassDescription">
648
+ <string key="className">UITableViewController</string>
649
+ <string key="superclassName">UIViewController</string>
650
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
651
+ <string key="majorKey">IBFrameworkSource</string>
652
+ <string key="minorKey">UIKit.framework/Headers/UITableViewController.h</string>
653
+ </object>
654
+ </object>
655
+ <object class="IBPartialClassDescription">
656
+ <string key="className">UIView</string>
657
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
658
+ <string key="majorKey">IBFrameworkSource</string>
659
+ <string key="minorKey">UIKit.framework/Headers/UITextField.h</string>
660
+ </object>
661
+ </object>
662
+ <object class="IBPartialClassDescription">
663
+ <string key="className">UIView</string>
664
+ <string key="superclassName">UIResponder</string>
665
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
666
+ <string key="majorKey">IBFrameworkSource</string>
667
+ <string key="minorKey">UIKit.framework/Headers/UIView.h</string>
668
+ </object>
669
+ </object>
670
+ <object class="IBPartialClassDescription">
671
+ <string key="className">UIViewController</string>
672
+ <reference key="sourceIdentifier" ref="119370389"/>
673
+ </object>
674
+ <object class="IBPartialClassDescription">
675
+ <string key="className">UIViewController</string>
676
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
677
+ <string key="majorKey">IBFrameworkSource</string>
678
+ <string key="minorKey">UIKit.framework/Headers/UIPopoverController.h</string>
679
+ </object>
680
+ </object>
681
+ <object class="IBPartialClassDescription">
682
+ <string key="className">UIViewController</string>
683
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
684
+ <string key="majorKey">IBFrameworkSource</string>
685
+ <string key="minorKey">UIKit.framework/Headers/UISplitViewController.h</string>
686
+ </object>
687
+ </object>
688
+ <object class="IBPartialClassDescription">
689
+ <string key="className">UIViewController</string>
690
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
691
+ <string key="majorKey">IBFrameworkSource</string>
692
+ <string key="minorKey">UIKit.framework/Headers/UITabBarController.h</string>
693
+ </object>
694
+ </object>
695
+ <object class="IBPartialClassDescription">
696
+ <string key="className">UIViewController</string>
697
+ <string key="superclassName">UIResponder</string>
698
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
699
+ <string key="majorKey">IBFrameworkSource</string>
700
+ <string key="minorKey">UIKit.framework/Headers/UIViewController.h</string>
701
+ </object>
702
+ </object>
703
+ <object class="IBPartialClassDescription">
704
+ <string key="className">UIWindow</string>
705
+ <string key="superclassName">UIView</string>
706
+ <object class="IBClassDescriptionSource" key="sourceIdentifier">
707
+ <string key="majorKey">IBFrameworkSource</string>
708
+ <string key="minorKey">UIKit.framework/Headers/UIWindow.h</string>
709
+ </object>
710
+ </object>
711
+ </object>
712
+ </object>
713
+ <int key="IBDocument.localizationMode">0</int>
714
+ <string key="IBDocument.TargetRuntimeIdentifier">IBCocoaTouchFramework</string>
715
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencies">
716
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
717
+ <integer value="528" key="NS.object.0"/>
718
+ </object>
719
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDependencyDefaults">
720
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS</string>
721
+ <integer value="1024" key="NS.object.0"/>
722
+ </object>
723
+ <object class="NSMutableDictionary" key="IBDocument.PluginDeclaredDevelopmentDependencies">
724
+ <string key="NS.key.0">com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3</string>
725
+ <integer value="3000" key="NS.object.0"/>
726
+ </object>
727
+ <bool key="IBDocument.PluginDeclaredDependenciesTrackSystemTargetVersion">YES</bool>
728
+ <string key="IBDocument.LastKnownRelativeProjectPath">iUnitTest.xcodeproj</string>
729
+ <int key="IBDocument.defaultPropertyAccessControl">3</int>
730
+ <string key="IBCocoaTouchPluginVersion">117</string>
731
+ </data>
732
+ </archive>