Unity_iPhone_Tests.m
1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#import "Preprocessor.h"
#import <XCTest/XCTest.h>
#include <UnityFramework/UnityFramework.h>
@interface UnityTest : XCTestCase
@end
@implementation UnityTest
- (void)testRunUnity
{
XCTestExpectation *expectation = [self expectationWithDescription: @"testRunUnity"];
__block bool running = true;
id<UIApplicationDelegate> delegate = [(UIApplication*)[UIApplication sharedApplication] delegate];
[delegate performSelector: @selector(setQuitHandler:) withObject:^{
[expectation fulfill];
running = false;
}];
// When Apple TV device doesn't have attached monitor or TV it doesn't run display link. So we force
// player loop here.
#if PLATFORM_TVOS
UnityAppController* unityApp = [(UIApplication*)[UIApplication sharedApplication] delegate];
while (running)
{
[unityApp repaint];
[[NSRunLoop mainRunLoop] runUntilDate: [NSDate dateWithTimeIntervalSinceNow: 0.001f]];
}
#endif
[self waitForExpectationsWithTimeout: 1000000 handler: nil];
}
@end