mirror of
https://github.com/touchHLE/touchHLE.git
synced 2026-01-31 01:25:24 +01:00
19 lines
543 B
Objective-C
19 lines
543 B
Objective-C
/*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*/
|
|
|
|
#include "system_headers.h"
|
|
#include <stdio.h>
|
|
|
|
#include "GUITestsAppDelegate.h"
|
|
|
|
int TestApp_gui_tests_main(int argc, char **argv) {
|
|
id pool = [NSAutoreleasePool new];
|
|
int res = UIApplicationMain(argc, argv, NULL,
|
|
NSStringFromClass([GUITestsAppDelegate class]));
|
|
[pool release];
|
|
return res;
|
|
}
|