blob: 576d3491cdcf4cf2acf0ea7541e354270e434a00 (
plain) (
blame)
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
|
//
// ManaPlusTests.m
// ManaPlusTests
//
// Created by Philippe Groarke on 2012-12-03.
// Copyright (c) 2012 evolonline. All rights reserved.
//
#import "ManaPlusTests.h"
@implementation ManaPlusTests
- (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 ManaPlusTests");
}
@end
|