RunTimeThingTests.m 921 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //
  2. // RunTimeThingTests.m
  3. // RunTimeThingTests
  4. //
  5. // Created by Linzhixiao on 16/4/15.
  6. // Copyright © 2016年 Linzhixiao. All rights reserved.
  7. //
  8. #import <XCTest/XCTest.h>
  9. @interface RunTimeThingTests : XCTestCase
  10. @end
  11. @implementation RunTimeThingTests
  12. - (void)setUp {
  13. [super setUp];
  14. // Put setup code here. This method is called before the invocation of each test method in the class.
  15. }
  16. - (void)tearDown {
  17. // Put teardown code here. This method is called after the invocation of each test method in the class.
  18. [super tearDown];
  19. }
  20. - (void)testExample {
  21. // This is an example of a functional test case.
  22. // Use XCTAssert and related functions to verify your tests produce the correct results.
  23. }
  24. - (void)testPerformanceExample {
  25. // This is an example of a performance test case.
  26. [self measureBlock:^{
  27. // Put the code you want to measure the time of here.
  28. }];
  29. }
  30. @end