Sha256: c589856574722bede22744350706c28c77717da7177c26e5621e860b19c3f18c
Contents?: true
Size: 802 Bytes
Versions: 28
Compression:
Stored size: 802 Bytes
Contents
// // fixturesTests.m // fixturesTests // // Created by Mark Larsen on 6/24/14. // Copyright (c) 2014 marklarr. All rights reserved. // #import <XCTest/XCTest.h> #import "fixtures.h" #import "fixturesTwo.h" @interface fixturesTests : XCTestCase @end @implementation fixturesTests - (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 { fixtures *f = [[fixtures alloc] init]; [f testedMethod]; } - (void)testFixturesTwo { fixturesTwo *f2 = [[fixturesTwo alloc] init]; XCTAssertEqual([f2 doSomething], 11); } @end
Version data entries
28 entries across 28 versions & 1 rubygems