Skip to content

Commit

Permalink
added project and workspace as host for the unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
samdeane committed Jan 18, 2012
1 parent f4e6d06 commit e70597d
Show file tree
Hide file tree
Showing 7 changed files with 606 additions and 0 deletions.
7 changes: 7 additions & 0 deletions KSHTMLWriter-Prefix.pch
@@ -0,0 +1,7 @@
//
// Prefix header for all source files of the 'KSHTMLWriter' target in the 'KSHTMLWriter' project
//

#ifdef __OBJC__
#import <Cocoa/Cocoa.h>
#endif
523 changes: 523 additions & 0 deletions KSHTMLWriter.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions KSHTMLWriter.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 22 additions & 0 deletions KSHTMLWriterTests/KSHTMLWriterTests-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.karelia.${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 KSHTMLWriterTests/KSHTMLWriterTests.h
@@ -0,0 +1,13 @@
//
// KSHTMLWriterTests.h
// KSHTMLWriterTests
//
// Created by Sam Deane on 18/01/2012.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>

@interface KSHTMLWriterTests : SenTestCase

@end
32 changes: 32 additions & 0 deletions KSHTMLWriterTests/KSHTMLWriterTests.m
@@ -0,0 +1,32 @@
//
// KSHTMLWriterTests.m
// KSHTMLWriterTests
//
// Created by Sam Deane on 18/01/2012.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//

#import "KSHTMLWriterTests.h"

@implementation KSHTMLWriterTests

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

@end
2 changes: 2 additions & 0 deletions KSHTMLWriterTests/en.lproj/InfoPlist.strings
@@ -0,0 +1,2 @@
/* Localized versions of Info.plist keys */

0 comments on commit e70597d

Please sign in to comment.