2011-05-24 09:23:02 +02:00
|
|
|
/*
|
|
|
|
* Created by Phil on 20/05/2011.
|
|
|
|
* Copyright 2011 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_DEFAULT_MAIN_HPP_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_DEFAULT_MAIN_HPP_INCLUDED
|
|
|
|
|
2012-05-10 09:17:06 +02:00
|
|
|
#ifndef __OBJC__
|
|
|
|
|
|
|
|
// Standard C/C++ main entry point
|
2015-12-09 07:21:28 +01:00
|
|
|
int main (int argc, char * argv[]) {
|
2013-06-05 19:48:18 +02:00
|
|
|
return Catch::Session().run( argc, argv );
|
2012-05-10 09:17:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#else // __OBJC__
|
|
|
|
|
|
|
|
// Objective-C entry point
|
|
|
|
int main (int argc, char * const argv[]) {
|
2012-03-17 19:20:06 +01:00
|
|
|
#if !CATCH_ARC_ENABLED
|
2011-05-24 09:23:02 +02:00
|
|
|
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
|
2012-03-17 19:20:06 +01:00
|
|
|
#endif
|
2013-07-03 20:14:59 +02:00
|
|
|
|
|
|
|
Catch::registerTestMethods();
|
2013-06-05 19:48:18 +02:00
|
|
|
int result = Catch::Session().run( argc, (char* const*)argv );
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-03-17 19:20:06 +01:00
|
|
|
#if !CATCH_ARC_ENABLED
|
2011-05-24 09:23:02 +02:00
|
|
|
[pool drain];
|
2012-03-17 19:20:06 +01:00
|
|
|
#endif
|
2013-07-03 20:14:59 +02:00
|
|
|
|
2012-02-18 10:58:30 +01:00
|
|
|
return result;
|
2011-05-24 09:23:02 +02:00
|
|
|
}
|
|
|
|
|
2012-05-10 09:17:06 +02:00
|
|
|
#endif // __OBJC__
|
|
|
|
|
2011-05-24 09:23:02 +02:00
|
|
|
#endif // TWOBLUECUBES_CATCH_DEFAULT_MAIN_HPP_INCLUDED
|