testdata/objc/FintExample/FintExampleTests/FintExampleTests.m
1 | // |
2 | // FintExampleTests.m |
3 | // FintExampleTests |
4 | // |
5 | // Copyright (c) 2014 Soichiro Kashima. All rights reserved. |
6 | // |
7 | |
8 | #import |
9 | |
10 | @interface FintExampleTests : XCTestCase |
11 | |
12 | @end |
13 | |
14 | @implementation FintExampleTests |
15 | |
16 | - (void)setUp |
17 | { |
18 | [super setUp]; |
19 | // Put setup code here. This method is called before the invocation of each test method in the class. |
Line length exceeds 80 characters
| |
20 | } |
21 | |
22 | - (void)tearDown |
23 | { |
24 | // Put teardown code here. This method is called after the invocation of each test method in the class. |
Line length exceeds 80 characters
| |
25 | [super tearDown]; |
26 | } |
27 | |
28 | - (void)testExample |
29 | { |
30 | XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__); |
31 | } |
32 | |
33 | @end |
34 |