From c6e5b98886c29a5a759c60693a24bd8b899e4d91 Mon Sep 17 00:00:00 2001 From: "Hoa V. Dinh" Date: Wed, 12 Nov 2014 13:08:52 -0800 Subject: Renamed main.mm to main.cpp --- tests/main.cpp | 20 ++++++++++++++++++++ tests/main.mm | 27 --------------------------- 2 files changed, 20 insertions(+), 27 deletions(-) create mode 100644 tests/main.cpp delete mode 100644 tests/main.mm (limited to 'tests') 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; +} + diff --git a/tests/main.mm b/tests/main.mm deleted file mode 100644 index b17fa0f5..00000000 --- a/tests/main.mm +++ /dev/null @@ -1,27 +0,0 @@ -// -// main.m -// tests -// -// Created by DINH Viêt Hoà on 1/10/13. -// Copyright (c) 2013 MailCore. All rights reserved. -// - -#import - -#include "test-all.h" -#if __APPLE__ -#include "test-all-mac.h" -#endif - -int main(int argc, const char * argv[]) -{ - - @autoreleasepool { - - testAll(); - testAllMac(); - - } - return 0; -} - -- cgit v1.2.3