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