AppDelegate.m 245 B

1234567891011121314
  1. #import "AppDelegate.h"
  2. #import "PerformanceTesting.h"
  3. @implementation AppDelegate
  4. @synthesize window = _window;
  5. - (void)applicationDidFinishLaunching:(NSNotification *)aNotification
  6. {
  7. [PerformanceTesting startPerformanceTests];
  8. }
  9. @end