aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/main.cpp
diff options
context:
space:
mode:
authorGravatar Hoa V. Dinh <dinh.viet.hoa@gmail.com>2014-11-12 13:08:52 -0800
committerGravatar Hoa V. Dinh <dinh.viet.hoa@gmail.com>2014-11-12 13:08:52 -0800
commitc6e5b98886c29a5a759c60693a24bd8b899e4d91 (patch)
tree4011874a5b399f56df19716fa7f201552ff6c71f /tests/main.cpp
parent48a2b0fc621d7bf04232da3fb0f3af608bfb54b1 (diff)
Renamed main.mm to main.cpp
Diffstat (limited to 'tests/main.cpp')
-rw-r--r--tests/main.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/main.cpp b/tests/main.cpp
new file mode 100644
index 00000000..a2855416
--- /dev/null
+++ b/tests/main.cpp
@@ -0,0 +1,20 @@
+//
+// main.m
+// tests
+//
+// Created by DINH Viêt Hoà on 1/10/13.
+// Copyright (c) 2013 MailCore. All rights reserved.
+//
+
+#include "test-all.h"
+#if __APPLE__
+#include "test-all-mac.h"
+#endif
+
+int main(int argc, const char * argv[])
+{
+ testAll();
+ testAllMac();
+ return 0;
+}
+