2011-05-24 09:23:02 +02:00
|
|
|
/*
|
|
|
|
* catch_default_main.hpp
|
|
|
|
* Catch
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
|
|
|
|
int main (int argc, char * const argv[])
|
|
|
|
{
|
|
|
|
#ifdef __OBJC__
|
|
|
|
|
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
|
2011-05-24 09:23:02 +02:00
|
|
|
|
|
|
|
Catch::registerTestMethods();
|
|
|
|
|
|
|
|
int result = Catch::Main( argc, (char* const*)argv );
|
|
|
|
|
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
|
2011-05-24 09:23:02 +02:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
2012-02-18 10:58:30 +01:00
|
|
|
int result =Catch::Main( argc, argv );
|
2011-05-24 09:23:02 +02:00
|
|
|
|
|
|
|
#endif
|
2012-02-18 10:58:30 +01:00
|
|
|
Catch::Hub::cleanUp();
|
|
|
|
return result;
|
2011-05-24 09:23:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_DEFAULT_MAIN_HPP_INCLUDED
|