You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
40 lines
936 B
Objective-C
40 lines
936 B
Objective-C
//
|
|
// UE4CmdLineRun.m
|
|
// UE4CmdLineRun
|
|
//
|
|
// Created by Josh Adams on 10/31/13.
|
|
// Copyright (c) 2013 EpicGames. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <Foundation/Foundation.h>
|
|
#import <XCTest/XCTest.h>
|
|
|
|
@interface UE4CmdLineRun : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation UE4CmdLineRun
|
|
|
|
- (void)setUp
|
|
{
|
|
[super setUp];
|
|
// Put setup code here. This method is called before the invocation of each test method in the class.
|
|
}
|
|
|
|
- (void)tearDown
|
|
{
|
|
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
|
[super tearDown];
|
|
}
|
|
|
|
- (void)testCmdLineRun
|
|
{
|
|
// by running the runloop from the test, the full game will be running as if launched normalled
|
|
// the unit test is run from the startup of the normal application path, this lets it continue on
|
|
// since the system will quit the app as soon as all tests are complete
|
|
[[NSRunLoop currentRunLoop] run];
|
|
}
|
|
|
|
@end
|