Sha256: 46f7260f7db6c5a30bc1d89df16970733eb6e24db1b39c7000812925de128133
Contents?: true
Size: 834 Bytes
Versions: 45
Compression:
Stored size: 834 Bytes
Contents
// // BranchesTests.m // fixtures // // Created by Julian Krumow on 11.10.14. // Copyright (c) 2014 marklarr. All rights reserved. // #import <XCTest/XCTest.h> #import "Branches.h" @interface BranchesTests : XCTestCase @end @implementation BranchesTests - (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)testBranchesNoBranches { Branches *branches = [[Branches alloc] init]; [branches branches:NO skipBranches:NO]; } - (void)testBranchesFirstBranchAndSkip { Branches *branches = [[Branches alloc] init]; [branches branches:YES skipBranches:YES]; } @end
Version data entries
45 entries across 45 versions & 2 rubygems