aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests-ios/main.m
diff options
context:
space:
mode:
Diffstat (limited to 'tests-ios/main.m')
-rw-r--r--tests-ios/main.m18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests-ios/main.m b/tests-ios/main.m
new file mode 100644
index 00000000..6eadda2f
--- /dev/null
+++ b/tests-ios/main.m
@@ -0,0 +1,18 @@
+//
+// main.m
+// test ios
+//
+// Created by DINH Viêt Hoà on 3/29/13.
+// Copyright (c) 2013 MailCore. 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]));
+ }
+}