summaryrefslogtreecommitdiff
path: root/projects/XCode/OCTest/OCTest/CatchOCTestCase.mm
blob: e285138be914ab3567a131b5b5d91b19a7381d89 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
//
//  CatchOCTestCase.mm
//  OCTest
//
//  Created by Phil Nash on 13/11/2010.
//  Copyright 2010 Two Blue Cubes Ltd. All rights reserved.
//
//  Distributed under the Boost Software License, Version 1.0. (See accompanying
//  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

#import "CatchOCTestCase.h"


@implementation TestFixture


-(void) setUp
{
    obj = [[TestObj alloc] init];
}

-(void) tearDown
{
    arcSafeRelease( obj );
}

OC_TEST_CASE( "This is a test case", "" )
{
    REQUIRE( obj.int_val == 0 );

    obj.int_val = 1;

    REQUIRE( obj.int_val == 1 );
}

OC_TEST_CASE( "This is another test case", "" )
{
    REQUIRE( obj.int_val == 0 );

    obj.int_val = 2;

    REQUIRE( obj.int_val == 2 );
}

OC_TEST_CASE( "tests a boolean value", "[!shouldfail]" )
{
    CHECK( [obj isTrue] == NO );
    CHECK( [obj isFalse] == YES );
}

OC_TEST_CASE( "throws an Objective-C exception", "[!throws][!shouldfail]" )
{
    @throw [[NSException alloc] initWithName: NSGenericException
                                      reason: @"Objective-C exception"
                                    userInfo: nil];
}
OC_TEST_CASE( "throws a std c++ exception", "[!throws][!shouldfail]" )
{
    throw std::domain_error( "std C++ exception" );
}

///////////////////////////////////////////////////////////////////////////
template<typename T>
void useObject( const T& object ){}

template<typename T>
void useObject( const T* object ){}

OC_TEST_CASE( "Matches work with OC types (NSString so far)", "[!shouldfail]" )
{
    using namespace Catch::Matchers;

    REQUIRE_THAT( @"This is a string", Equals( @"This isn't a string" ) );
    REQUIRE_THAT( @"This is a string", Contains( @"is a" ) );
    REQUIRE_THAT( @"This is a string", StartsWith( @"This" ) );
    REQUIRE_THAT( @"This is a string", EndsWith( @"string" ) );
}

OC_TEST_CASE( "nil NSString should not crash the test", "[!shouldfail]" )
{
    using namespace Catch::Matchers;

    CHECK_THAT( (NSString*)nil, Equals( @"This should fail, but not crash" ) );
    CHECK_THAT( (NSString*)nil, StartsWith( @"anything" ) );
}

@end