Skip to content

Commit

Permalink
Added the test architecture for the other frameworks (QSCore.framewor…
Browse files Browse the repository at this point in the history
…k, QSEffects.framework, QSInterface.framework).
  • Loading branch information
HenningJ committed Mar 3, 2012
1 parent c009c31 commit 46bb4f8
Show file tree
Hide file tree
Showing 13 changed files with 630 additions and 19 deletions.
22 changes: 22 additions & 0 deletions Quicksilver/PropertyLists/QSEffectsTests-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:https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.yourcompany.${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>
22 changes: 22 additions & 0 deletions Quicksilver/PropertyLists/QSFoundationTests-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:https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.yourcompany.${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>
22 changes: 22 additions & 0 deletions Quicksilver/PropertyLists/QSInterfaceTests-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:https://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>English</string>
<key>CFBundleExecutable</key>
<string>${EXECUTABLE_NAME}</string>
<key>CFBundleIdentifier</key>
<string>com.yourcompany.${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>
493 changes: 474 additions & 19 deletions Quicksilver/Quicksilver.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

16 changes: 16 additions & 0 deletions Quicksilver/Tests/Tests-QSCore/CoreDummyTest.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// DummyTest.h
// Quicksilver
//
// Created by Henning Jungkurth on 3/3/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>


@interface DummyTest : SenTestCase {

}

@end
14 changes: 14 additions & 0 deletions Quicksilver/Tests/Tests-QSCore/CoreDummyTest.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// DummyTest.m
// Quicksilver
//
// Created by Henning Jungkurth on 3/3/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//

#import "CoreDummyTest.h"


@implementation DummyTest

@end
16 changes: 16 additions & 0 deletions Quicksilver/Tests/Tests-QSEffects/EffectsDummyTests.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// EffectsDummyTests.h
// Quicksilver
//
// Created by Henning Jungkurth on 3/3/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>


@interface EffectsDummyTests : SenTestCase {

}

@end
14 changes: 14 additions & 0 deletions Quicksilver/Tests/Tests-QSEffects/EffectsDummyTests.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// EffectsDummyTests.m
// Quicksilver
//
// Created by Henning Jungkurth on 3/3/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//

#import "EffectsDummyTests.h"


@implementation EffectsDummyTests

@end
16 changes: 16 additions & 0 deletions Quicksilver/Tests/Tests-QSInterface/InterfaceDummyTest.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
//
// InterfaceDummyTest.h
// Quicksilver
//
// Created by Henning Jungkurth on 3/3/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//

#import <SenTestingKit/SenTestingKit.h>


@interface InterfaceDummyTest : SenTestCase {

}

@end
14 changes: 14 additions & 0 deletions Quicksilver/Tests/Tests-QSInterface/InterfaceDummyTest.m
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
//
// InterfaceDummyTest.m
// Quicksilver
//
// Created by Henning Jungkurth on 3/3/12.
// Copyright 2012 __MyCompanyName__. All rights reserved.
//

#import "InterfaceDummyTest.h"


@implementation InterfaceDummyTest

@end

0 comments on commit 46bb4f8

Please sign in to comment.