kneet2Tests.m 853 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. //
  2. // kneet2Tests.m
  3. // kneet2Tests
  4. //
  5. // Created by Jason Lee on 9/16/15.
  6. // Copyright (c) 2015 Jason Lee. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <XCTest/XCTest.h>
  10. @interface kneet2Tests : XCTestCase
  11. @end
  12. @implementation kneet2Tests
  13. - (void)setUp {
  14. [super setUp];
  15. // Put setup code here. This method is called before the invocation of each test method in the class.
  16. }
  17. - (void)tearDown {
  18. // Put teardown code here. This method is called after the invocation of each test method in the class.
  19. [super tearDown];
  20. }
  21. - (void)testExample {
  22. // This is an example of a functional test case.
  23. XCTAssert(YES, @"Pass");
  24. }
  25. - (void)testPerformanceExample {
  26. // This is an example of a performance test case.
  27. [self measureBlock:^{
  28. // Put the code you want to measure the time of here.
  29. }];
  30. }
  31. @end