blob: 6ef0e5960608c08b66bde9b8d8560268846280b1 (
plain)
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
|
//
// KVOTests.m
// KVOTests
//
// Created by mo khan on 2013-06-04.
// Copyright (c) 2013 mo khan. All rights reserved.
//
#import "KVOTests.h"
@implementation KVOTests
- (void)setUp
{
[super setUp];
// Set-up code here.
}
- (void)tearDown
{
// Tear-down code here.
[super tearDown];
}
- (void)testExample
{
STFail(@"Unit tests are not implemented yet in KVOTests");
}
@end
|