Slather logo

Coverage for "fixturesTests.m" : 100.00%

(7 of 7 relevant lines covered)

spec/fixtures/fixturesTests/fixturesTests.m

1
//
2
//  fixturesTests.m
3
//  fixturesTests
4
//
5
//  Created by Mark Larsen on 6/24/14.
6
//  Copyright (c) 2014 marklarr. All rights reserved.
7
//
8
9
#import <XCTest/XCTest.h>
10
#import "fixtures.h"
11
12
@interface fixturesTests : XCTestCase
13
14
@end
15
16
@implementation fixturesTests
17
18
- (void)setUp
19
{
20
    [super setUp];
1x
21
    // Put setup code here. This method is called before the invocation of each test method in the class.
22
}
1x
23
24
- (void)tearDown
25
{
26
    // Put teardown code here. This method is called after the invocation of each test method in the class.
27
    [super tearDown];
1x
28
}
1x
29
30
- (void)testExample
31
{
32
    fixtures *f = [[fixtures alloc] init];
1x
33
    [f testedMethod];
1x
34
}
1x
35
36
@end