From 2d4a2ebf70ce7916da42f0f64f8298a214daa55d Mon Sep 17 00:00:00 2001 From: mo khan Date: Mon, 10 Jun 2013 20:40:57 -0600 Subject: add more examples --- KVO/KVOTests/KVOTests-Info.plist | 22 ++++++++++++++++++++++ KVO/KVOTests/KVOTests.h | 13 +++++++++++++ KVO/KVOTests/KVOTests.m | 32 ++++++++++++++++++++++++++++++++ KVO/KVOTests/en.lproj/InfoPlist.strings | 2 ++ 4 files changed, 69 insertions(+) create mode 100644 KVO/KVOTests/KVOTests-Info.plist create mode 100644 KVO/KVOTests/KVOTests.h create mode 100644 KVO/KVOTests/KVOTests.m create mode 100644 KVO/KVOTests/en.lproj/InfoPlist.strings (limited to 'KVO/KVOTests') diff --git a/KVO/KVOTests/KVOTests-Info.plist b/KVO/KVOTests/KVOTests-Info.plist new file mode 100644 index 0000000..9ea836d --- /dev/null +++ b/KVO/KVOTests/KVOTests-Info.plist @@ -0,0 +1,22 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + mokhan.ca.${PRODUCT_NAME:rfc1034identifier} + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + + diff --git a/KVO/KVOTests/KVOTests.h b/KVO/KVOTests/KVOTests.h new file mode 100644 index 0000000..04d3449 --- /dev/null +++ b/KVO/KVOTests/KVOTests.h @@ -0,0 +1,13 @@ +// +// KVOTests.h +// KVOTests +// +// Created by mo khan on 2013-06-04. +// Copyright (c) 2013 mo khan. All rights reserved. +// + +#import + +@interface KVOTests : SenTestCase + +@end diff --git a/KVO/KVOTests/KVOTests.m b/KVO/KVOTests/KVOTests.m new file mode 100644 index 0000000..6ef0e59 --- /dev/null +++ b/KVO/KVOTests/KVOTests.m @@ -0,0 +1,32 @@ +// +// KVOTests.m +// KVOTests +// +// Created by mo khan on 2013-06-04. +// Copyright (c) 2013 mo khan. All rights reserved. +// + +#import "KVOTests.h" + +@implementation KVOTests + +- (void)setUp +{ + [super setUp]; + + // Set-up code here. +} + +- (void)tearDown +{ + // Tear-down code here. + + [super tearDown]; +} + +- (void)testExample +{ + STFail(@"Unit tests are not implemented yet in KVOTests"); +} + +@end diff --git a/KVO/KVOTests/en.lproj/InfoPlist.strings b/KVO/KVOTests/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/KVO/KVOTests/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + -- cgit v1.2.3