1
0
mirror of https://github.com/catchorg/Catch2.git synced 2025-05-01 13:03:51 +00:00
2010-11-14 22:47:30 +00:00

15 lines
338 B
Plaintext

#import <Foundation/Foundation.h>
#import "../../../catch_runner.hpp"
#import "CatchOCTestCase.h"
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
// insert code here...
int result = Catch::Main( argc, (char* const*)argv );
[pool drain];
return result;
}