aboutsummaryrefslogtreecommitdiffhomepage
path: root/example/ios/iOS UI Test/iOS UI Test/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'example/ios/iOS UI Test/iOS UI Test/main.m')
-rw-r--r--example/ios/iOS UI Test/iOS UI Test/main.m18
1 files changed, 18 insertions, 0 deletions
diff --git a/example/ios/iOS UI Test/iOS UI Test/main.m b/example/ios/iOS UI Test/iOS UI Test/main.m
new file mode 100644
index 00000000..479c71e4
--- /dev/null
+++ b/example/ios/iOS UI Test/iOS UI Test/main.m
@@ -0,0 +1,18 @@
+//
+// main.m
+// iOS UI Test
+//
+// Created by Jonathan Willing on 4/8/13.
+// Copyright (c) 2013 AppJon. All rights reserved.
+//
+
+#import <UIKit/UIKit.h>
+
+#import "AppDelegate.h"
+
+int main(int argc, char *argv[])
+{
+ @autoreleasepool {
+ return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
+ }
+}