mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-14 01:39:54 +01:00
18 lines
378 B
Plaintext
18 lines
378 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];
|
|
|
|
Catch::registerTestMethods();
|
|
|
|
// insert code here...
|
|
int result = Catch::Main( argc, (char* const*)argv );
|
|
|
|
[pool drain];
|
|
return result;
|
|
}
|