Showing
6 changed files
with
46 additions
and
40 deletions
This diff is collapsed. Click to expand it.
PNChartDemoTests/PNChartDemoTests.m
deleted
100644 → 0
| 1 | -// | ||
| 2 | -// PNChartDemoTests.m | ||
| 3 | -// PNChartDemoTests | ||
| 4 | -// | ||
| 5 | -// Created by kevin on 11/7/13. | ||
| 6 | -// Copyright (c) 2013年 kevinzhow. All rights reserved. | ||
| 7 | -// | ||
| 8 | - | ||
| 9 | -#import <XCTest/XCTest.h> | ||
| 10 | - | ||
| 11 | -@interface PNChartDemoTests : XCTestCase | ||
| 12 | - | ||
| 13 | -@end | ||
| 14 | - | ||
| 15 | -@implementation PNChartDemoTests | ||
| 16 | - | ||
| 17 | -- (void)setUp | ||
| 18 | -{ | ||
| 19 | - [super setUp]; | ||
| 20 | - // Put setup code here. This method is called before the invocation of each test method in the class. | ||
| 21 | -} | ||
| 22 | - | ||
| 23 | -- (void)tearDown | ||
| 24 | -{ | ||
| 25 | - // Put teardown code here. This method is called after the invocation of each test method in the class. | ||
| 26 | - [super tearDown]; | ||
| 27 | -} | ||
| 28 | - | ||
| 29 | -- (void)testExample | ||
| 30 | -{ | ||
| 31 | - XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); | ||
| 32 | -} | ||
| 33 | - | ||
| 34 | -@end |
| @@ -5,11 +5,13 @@ | @@ -5,11 +5,13 @@ | ||
| 5 | <key>CFBundleDevelopmentRegion</key> | 5 | <key>CFBundleDevelopmentRegion</key> |
| 6 | <string>en</string> | 6 | <string>en</string> |
| 7 | <key>CFBundleExecutable</key> | 7 | <key>CFBundleExecutable</key> |
| 8 | - <string>${EXECUTABLE_NAME}</string> | 8 | + <string>$(EXECUTABLE_NAME)</string> |
| 9 | <key>CFBundleIdentifier</key> | 9 | <key>CFBundleIdentifier</key> |
| 10 | - <string>Piner.${PRODUCT_NAME:rfc1034identifier}</string> | 10 | + <string>vila.$(PRODUCT_NAME:rfc1034identifier)</string> |
| 11 | <key>CFBundleInfoDictionaryVersion</key> | 11 | <key>CFBundleInfoDictionaryVersion</key> |
| 12 | <string>6.0</string> | 12 | <string>6.0</string> |
| 13 | + <key>CFBundleName</key> | ||
| 14 | + <string>$(PRODUCT_NAME)</string> | ||
| 13 | <key>CFBundlePackageType</key> | 15 | <key>CFBundlePackageType</key> |
| 14 | <string>BNDL</string> | 16 | <string>BNDL</string> |
| 15 | <key>CFBundleShortVersionString</key> | 17 | <key>CFBundleShortVersionString</key> |
PNChartTests/PNChartTests.m
0 → 100644
| 1 | +// | ||
| 2 | +// PNChartTests.m | ||
| 3 | +// PNChartTests | ||
| 4 | +// | ||
| 5 | +// Created by Viktoras Laukevičius on 18/04/15. | ||
| 6 | +// Copyright (c) 2015 kevinzhow. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import <UIKit/UIKit.h> | ||
| 10 | +#import <XCTest/XCTest.h> | ||
| 11 | + | ||
| 12 | +@interface PNChartTests : XCTestCase | ||
| 13 | + | ||
| 14 | +@end | ||
| 15 | + | ||
| 16 | +@implementation PNChartTests | ||
| 17 | + | ||
| 18 | +- (void)setUp { | ||
| 19 | + [super setUp]; | ||
| 20 | + // Put setup code here. This method is called before the invocation of each test method in the class. | ||
| 21 | +} | ||
| 22 | + | ||
| 23 | +- (void)tearDown { | ||
| 24 | + // Put teardown code here. This method is called after the invocation of each test method in the class. | ||
| 25 | + [super tearDown]; | ||
| 26 | +} | ||
| 27 | + | ||
| 28 | +- (void)testExample { | ||
| 29 | + // This is an example of a functional test case. | ||
| 30 | + XCTAssert(YES, @"Pass"); | ||
| 31 | +} | ||
| 32 | + | ||
| 33 | +- (void)testPerformanceExample { | ||
| 34 | + // This is an example of a performance test case. | ||
| 35 | + [self measureBlock:^{ | ||
| 36 | + // Put the code you want to measure the time of here. | ||
| 37 | + }]; | ||
| 38 | +} | ||
| 39 | + | ||
| 40 | +@end |
| @@ -5,6 +5,6 @@ DEPENDENCIES: | @@ -5,6 +5,6 @@ DEPENDENCIES: | ||
| 5 | - UICountingLabel (~> 1.2.0) | 5 | - UICountingLabel (~> 1.2.0) |
| 6 | 6 | ||
| 7 | SPEC CHECKSUMS: | 7 | SPEC CHECKSUMS: |
| 8 | - UICountingLabel: a55223a9357af71f833af76665164d2e3f3654b5 | 8 | + UICountingLabel: 1db4e7d023e1762171eb226d6dff47a7a84f27aa |
| 9 | 9 | ||
| 10 | -COCOAPODS: 0.35.0 | 10 | +COCOAPODS: 0.36.4 |
-
Please register or login to post a comment