diff options
author | Filipp Lepalaan <filipp@mac.com> | 2011-07-21 08:53:06 +0300 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2011-07-21 08:53:06 +0300 |
commit | 0a7672767748f104919b100c6fc64b05b911434e (patch) | |
tree | 258d52ec9d89a1b3a061f694fcbea9a53bdc0052 /DrexTests | |
download | Drex-master.tar.gz Drex-master.tar.bz2 Drex-master.zip |
Diffstat (limited to 'DrexTests')
-rw-r--r-- | DrexTests/DrexTests-Info.plist | 22 | ||||
-rw-r--r-- | DrexTests/DrexTests.h | 13 | ||||
-rw-r--r-- | DrexTests/DrexTests.m | 32 | ||||
-rw-r--r-- | DrexTests/en.lproj/InfoPlist.strings | 2 |
4 files changed, 69 insertions, 0 deletions
diff --git a/DrexTests/DrexTests-Info.plist b/DrexTests/DrexTests-Info.plist new file mode 100644 index 0000000..ceb5578 --- /dev/null +++ b/DrexTests/DrexTests-Info.plist @@ -0,0 +1,22 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> +<plist version="1.0"> +<dict> + <key>CFBundleDevelopmentRegion</key> + <string>en</string> + <key>CFBundleExecutable</key> + <string>${EXECUTABLE_NAME}</string> + <key>CFBundleIdentifier</key> + <string>com.github.filipp.${PRODUCT_NAME:rfc1034identifier}</string> + <key>CFBundleInfoDictionaryVersion</key> + <string>6.0</string> + <key>CFBundlePackageType</key> + <string>BNDL</string> + <key>CFBundleShortVersionString</key> + <string>1.0</string> + <key>CFBundleSignature</key> + <string>????</string> + <key>CFBundleVersion</key> + <string>1</string> +</dict> +</plist> diff --git a/DrexTests/DrexTests.h b/DrexTests/DrexTests.h new file mode 100644 index 0000000..20ce342 --- /dev/null +++ b/DrexTests/DrexTests.h @@ -0,0 +1,13 @@ +// +// DrexTests.h +// DrexTests +// +// Created by Filipp Lepalaan on 21.7.2011. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#import <SenTestingKit/SenTestingKit.h> + +@interface DrexTests : SenTestCase + +@end diff --git a/DrexTests/DrexTests.m b/DrexTests/DrexTests.m new file mode 100644 index 0000000..f1d625c --- /dev/null +++ b/DrexTests/DrexTests.m @@ -0,0 +1,32 @@ +// +// DrexTests.m +// DrexTests +// +// Created by Filipp Lepalaan on 21.7.2011. +// Copyright 2011 __MyCompanyName__. All rights reserved. +// + +#import "DrexTests.h" + +@implementation DrexTests + +- (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 DrexTests"); +} + +@end diff --git a/DrexTests/en.lproj/InfoPlist.strings b/DrexTests/en.lproj/InfoPlist.strings new file mode 100644 index 0000000..477b28f --- /dev/null +++ b/DrexTests/en.lproj/InfoPlist.strings @@ -0,0 +1,2 @@ +/* Localized versions of Info.plist keys */ + |