Slather logo

Coverage for "fixtures.m" : 50.00%

(3 of 6 relevant lines covered)

spec/fixtures/fixtures/fixtures.m

1
//
2
//  fixtures.m
3
//  fixtures
4
//
5
//  Created by Mark Larsen on 6/24/14.
6
//  Copyright (c) 2014 marklarr. All rights reserved.
7
//
8
9
#import "fixtures.h"
10
11
@implementation fixtures
12
13
- (void)testedMethod
14
{
1x
15
    NSLog(@"tested");
1x
16
}
1x
17
18
- (void)untestedMethod
19
{
!
20
    NSLog(@"untested");
!
21
}
!
22
23
@end