shlist

share and manage lists between multiple people
Log | Files | Refs

shlistTests.m (717B)


      1 #import <UIKit/UIKit.h>
      2 #import <XCTest/XCTest.h>
      3 
      4 @interface shlistTests : XCTestCase
      5 
      6 @end
      7 
      8 @implementation shlistTests
      9 
     10 - (void)setUp {
     11     [super setUp];
     12     // Put setup code here. This method is called before the invocation of each test method in the class.
     13 }
     14 
     15 - (void)tearDown {
     16     // Put teardown code here. This method is called after the invocation of each test method in the class.
     17     [super tearDown];
     18 }
     19 
     20 - (void)testExample {
     21     // This is an example of a functional test case.
     22     XCTAssert(YES, @"Pass");
     23 }
     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 
     32 @end