Sha256: 3fc9c606d7776f244da0d8a023887456163c5e1145ea48797151c6a5be01a89b

Contents?: true

Size: 481 Bytes

Versions: 8

Compression:

Stored size: 481 Bytes

Contents

//
//  main.m
//  UISpecRunner
//
//  Created by Blake Watters on 4/20/10.
//  Copyright 2010 Two Toasters. All rights reserved.
//

#import <UIKit/UIKit.h>
#import <UISpec.h>
#import "UISpec+UISpecRunner.h"

int main(int argc, char *argv[]) {
    
	NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
	
	// Run the specs
	[UISpec runSpecsFromEnvironmentAfterDelay:0.5];
	
    int retVal = UIApplicationMain(argc, argv, nil, nil);
    [pool release];
    return retVal;
}

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
uispecrunner-0.3.3 src/main.m
uispecrunner-0.3.2 src/main.m
uispecrunner-0.3.1 src/main.m
uispecrunner-0.3.0 src/main.m
uispecrunner-0.2.4 src/main.m
uispecrunner-0.2.3 src/main.m
uispecrunner-0.2.2 src/main.m
uispecrunner-0.2.1 src/main.m