summaryrefslogtreecommitdiff
path: root/platform/ios/test/common/ViewController.m
blob: e9c526122ae927eaec047af4048bcd3ccf511ecf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#import "ViewController.h"
#import "iosTestRunner.h"

@interface ViewController ()
{
    IosTestRunner* i;
}
@end

@implementation ViewController

- (void)viewDidLoad {
    [super viewDidLoad];
//  In order to run test runner with app itself instead of with unit test, comment out the following line.
//  i = [[IosTestRunner alloc]init];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}

@end