-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestStation.m
More file actions
52 lines (40 loc) · 1.34 KB
/
TestStation.m
File metadata and controls
52 lines (40 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// TestStation.m
// StationFinder
//
// Created by Ed Schmalzle on 1/15/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import "GHUnit.h"
#import "Station.h"
@interface TestStation : GHTestCase { }
@end
@implementation TestStation
Station *stationInstance;
- (void)setUp {
stationInstance = [[Station alloc] init];
}
- (void)tearDown {
[stationInstance release];
}
- (void)testStationHasNameProperty {
SEL selector = @selector( name );
GHAssertTrue([stationInstance respondsToSelector: selector], @"Station object should have name property");
}
- (void)testStationHasMarketCityProperty {
SEL selector = @selector( marketCity );
GHAssertTrue([stationInstance respondsToSelector: selector], @"Station object should have marketCity property");
}
- (void)testStationHasSignalProperty {
SEL selector = @selector( signal );
GHAssertTrue([stationInstance respondsToSelector: selector], @"Station object should have signal property");
}
- (void)testStationHasFrequencyProperty {
SEL selector = @selector( frequency );
GHAssertTrue([stationInstance respondsToSelector: selector], @"Station object should have frequency property");
}
- (void)testStationHasTaglineProperty {
SEL selector = @selector( tagline );
GHAssertTrue([stationInstance respondsToSelector: selector], @"Station object should have tagline property");
}
@end