From 42ce9538df045e42762067785f4b9c569580e222 Mon Sep 17 00:00:00 2001 From: polo2013 <paul.zhou@163.com> Date: Wed, 18 May 2016 10:29:10 +0800 Subject: [PATCH] init --- "\347\272\242/\347\272\242Tests/_Tests.m" | 39 +++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 "\347\272\242/\347\272\242Tests/_Tests.m" diff --git "a/\347\272\242/\347\272\242Tests/_Tests.m" "b/\347\272\242/\347\272\242Tests/_Tests.m" new file mode 100644 index 0000000..683368e --- /dev/null +++ "b/\347\272\242/\347\272\242Tests/_Tests.m" @@ -0,0 +1,39 @@ +// +// _Tests.m +// 红Tests +// +// Created by 焦钟培 on 15/12/14. +// Copyright © 2015年 焦钟培. All rights reserved. +// + +#import <XCTest/XCTest.h> + +@interface _Tests : XCTestCase + +@end + +@implementation _Tests + +- (void)setUp { + [super setUp]; + // Put setup code here. This method is called before the invocation of each test method in the class. +} + +- (void)tearDown { + // Put teardown code here. This method is called after the invocation of each test method in the class. + [super tearDown]; +} + +- (void)testExample { + // This is an example of a functional test case. + // Use XCTAssert and related functions to verify your tests produce the correct results. +} + +- (void)testPerformanceExample { + // This is an example of a performance test case. + [self measureBlock:^{ + // Put the code you want to measure the time of here. + }]; +} + +@end -- 2.18.1