diff options
author | Brad King <brad.king@kitware.com> | 2015-03-23 13:18:29 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2015-03-23 13:18:29 (GMT) |
commit | a37937f7c0a37626298ccc80cffe5ec9fd26aa75 (patch) | |
tree | 74a3c4ca11b69ec061d3a81450e3b442aaabf2f1 /Tests/XCTest/CocoaExample/AppDelegate.m | |
parent | cc8b8cdc751ff2dfa6e77a69da542d6aef066346 (diff) | |
parent | 4178cd88fc01bd38fde2f3ee7a1702cfb4808f93 (diff) | |
download | CMake-a37937f7c0a37626298ccc80cffe5ec9fd26aa75.zip CMake-a37937f7c0a37626298ccc80cffe5ec9fd26aa75.tar.gz CMake-a37937f7c0a37626298ccc80cffe5ec9fd26aa75.tar.bz2 |
Merge topic 'xcode-xctest'
4178cd88 Help: Add notes for topic 'xcode-xctest'
87a4b858 Tests: Add XCTest example to test Frameworks and Cocoa App Bundles
ba14510b OS X: Add FindXCTest module
3714955b OS X: Add handling for XCTest bundles
54a5cdbb Tests: Compute Xcode version for any generator on OS X
Diffstat (limited to 'Tests/XCTest/CocoaExample/AppDelegate.m')
-rw-r--r-- | Tests/XCTest/CocoaExample/AppDelegate.m | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Tests/XCTest/CocoaExample/AppDelegate.m b/Tests/XCTest/CocoaExample/AppDelegate.m new file mode 100644 index 0000000..07af62f --- /dev/null +++ b/Tests/XCTest/CocoaExample/AppDelegate.m @@ -0,0 +1,18 @@ +#import "AppDelegate.h" + +@interface AppDelegate () + +@property (assign) IBOutlet NSWindow *window; +@end + +@implementation AppDelegate + +- (void)applicationDidFinishLaunching:(NSNotification *)aNotification { + // Insert code here to initialize your application +} + +- (void)applicationWillTerminate:(NSNotification *)aNotification { + // Insert code here to tear down your application +} + +@end |