Sha256: 9805fc3b4642b59122a120652d9b0a5ec0af752144bf1746d0855206282bf4e7
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
// // <%= config[:class_prefix] %><%= config[:project_name] %>Tests.m // <%= config[:class_prefix] %><%= config[:project_name] %>Tests // // Created by Fabio Gallonetto on 28/01/2016. // Copyright © 2016 Future Workshops. All rights reserved. // #import <XCTest/XCTest.h> @interface <%= config[:class_prefix] %><%= config[:project_name] %>Tests : XCTestCase @end @implementation <%= config[:class_prefix] %><%= config[:project_name] %>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
Version data entries
2 entries across 2 versions & 1 rubygems