Files
UnrealEngineUWP/Engine/Build/IOS/UE4CmdLineRun/UE4CmdLineRun.m
Ben Marsh 530369c613 Merging //UE4/Dev-Main to Dev-Build (//UE4/Dev-Build)
#rb none
#rnx

[CL 4662695 by Ben Marsh in Dev-Build branch]
2018-12-14 14:49:12 -05:00

34 lines
856 B
Objective-C

// Copyright 2013-2019 Epic Games, Inc. 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