forked from burczyk/AFAbstractRESTClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 3e01b26
Showing
8 changed files
with
520 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
// | ||
// Prefix header for all source files of the 'AFAbstractRESTClient' target in the 'AFAbstractRESTClient' project | ||
// | ||
|
||
#ifdef __OBJC__ | ||
#import <Foundation/Foundation.h> | ||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// AFAbstractRESTClient.h | ||
// AFAbstractRESTClient | ||
// | ||
// Created by Kamil Burczyk on 05.05.2013. | ||
// Copyright (c) 2013 Kamil Burczyk. All rights reserved. | ||
// | ||
|
||
#import <Foundation/Foundation.h> | ||
|
||
@interface AFAbstractRESTClient : NSObject | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// AFAbstractRESTClient.m | ||
// AFAbstractRESTClient | ||
// | ||
// Created by Kamil Burczyk on 05.05.2013. | ||
// Copyright (c) 2013 Kamil Burczyk. All rights reserved. | ||
// | ||
|
||
#import "AFAbstractRESTClient.h" | ||
|
||
@implementation AFAbstractRESTClient | ||
|
||
@end |
22 changes: 22 additions & 0 deletions
22
AFAbstractRESTClientTests/AFAbstractRESTClientTests-Info.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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>burczyk.kamil.${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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
// | ||
// AFAbstractRESTClientTests.h | ||
// AFAbstractRESTClientTests | ||
// | ||
// Created by Kamil Burczyk on 05.05.2013. | ||
// Copyright (c) 2013 Kamil Burczyk. All rights reserved. | ||
// | ||
|
||
#import <SenTestingKit/SenTestingKit.h> | ||
|
||
@interface AFAbstractRESTClientTests : SenTestCase | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
// | ||
// AFAbstractRESTClientTests.m | ||
// AFAbstractRESTClientTests | ||
// | ||
// Created by Kamil Burczyk on 05.05.2013. | ||
// Copyright (c) 2013 Kamil Burczyk. All rights reserved. | ||
// | ||
|
||
#import "AFAbstractRESTClientTests.h" | ||
|
||
@implementation AFAbstractRESTClientTests | ||
|
||
- (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 AFAbstractRESTClientTests"); | ||
} | ||
|
||
@end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/* Localized versions of Info.plist keys */ | ||
|