Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sshrpe committed Jun 4, 2013
0 parents commit 0278dc3
Show file tree
Hide file tree
Showing 8 changed files with 520 additions and 0 deletions.
418 changes: 418 additions & 0 deletions Alkaline.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions Alkaline/Alkaline-Prefix.pch
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
//
// Prefix header for all source files of the 'Alkaline' target in the 'Alkaline' project
//

#ifdef __OBJC__
#import <Foundation/Foundation.h>
#endif
13 changes: 13 additions & 0 deletions Alkaline/Alkaline.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// Alkaline.h
// Alkaline
//
// Created by Stuart Sharpe on 04/06/2013.
// Copyright (c) 2013 sshrpe. All rights reserved.
//

#import <Foundation/Foundation.h>

@interface Alkaline : NSObject

@end
13 changes: 13 additions & 0 deletions Alkaline/Alkaline.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// Alkaline.m
// Alkaline
//
// Created by Stuart Sharpe on 04/06/2013.
// Copyright (c) 2013 sshrpe. All rights reserved.
//

#import "Alkaline.h"

@implementation Alkaline

@end
22 changes: 22 additions & 0 deletions AlkalineTests/AlkalineTests-Info.plist
Original file line number Diff line number Diff line change
@@ -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.sshrpe.${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>
13 changes: 13 additions & 0 deletions AlkalineTests/AlkalineTests.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
//
// AlkalineTests.h
// AlkalineTests
//
// Created by Stuart Sharpe on 04/06/2013.
// Copyright (c) 2013 sshrpe. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>

@interface AlkalineTests : SenTestCase

@end
32 changes: 32 additions & 0 deletions AlkalineTests/AlkalineTests.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
//
// AlkalineTests.m
// AlkalineTests
//
// Created by Stuart Sharpe on 04/06/2013.
// Copyright (c) 2013 sshrpe. All rights reserved.
//

#import "AlkalineTests.h"

@implementation AlkalineTests

- (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 AlkalineTests");
}

@end
2 changes: 2 additions & 0 deletions AlkalineTests/en.lproj/InfoPlist.strings
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/* Localized versions of Info.plist keys */

0 comments on commit 0278dc3

Please sign in to comment.