summaryrefslogtreecommitdiffstats
path: root/Tests/XCTest/CocoaExample/AppDelegate.m
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2015-03-23 13:18:29 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2015-03-23 13:18:29 (GMT)
commita37937f7c0a37626298ccc80cffe5ec9fd26aa75 (patch)
tree74a3c4ca11b69ec061d3a81450e3b442aaabf2f1 /Tests/XCTest/CocoaExample/AppDelegate.m
parentcc8b8cdc751ff2dfa6e77a69da542d6aef066346 (diff)
parent4178cd88fc01bd38fde2f3ee7a1702cfb4808f93 (diff)
downloadCMake-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.m18
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