File: TestCase.m

package info (click to toggle)
pantomime 1.0.2-0.1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 2,036 kB
  • ctags: 325
  • sloc: objc: 11,397; ansic: 2,429; sh: 115; makefile: 70
file content (144 lines) | stat: -rw-r--r-- 3,100 bytes parent folder | download
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/*
**  TestCase.m
**
**  This is a small and simple (but useful) test framework.
**
**  Copyright (c) 2001, 2002
**
**  Author:  Alexander Malmberg <alexander@malmberg.org>
**
**  This library is free software; you can redistribute it and/or
**  modify it under the terms of the GNU Lesser General Public
**  License as published by the Free Software Foundation; either
**  version 2.1 of the License, or (at your option) any later version.
**  
**  This library is distributed in the hope that it will be useful,
**  but WITHOUT ANY WARRANTY; without even the implied warranty of
**  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
**  Lesser General Public License for more details.
**  
**  You should have received a copy of the GNU Lesser General Public
**  License along with this library; if not, write to the Free Software
**  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/

#include <Foundation/NSObject.h>
#include <Foundation/NSException.h>
#include <Foundation/NSAutoreleasePool.h>
#include <Foundation/NSData.h>

#import <Pantomime/NSDataExtensions.h>

#include "TestCase.h"

@implementation TestCase

- (id) initWithName: (const char *)n
{
  self = [super init];
  name = n;
  
  sel = GSSelectorFromName(n);

  if ( !sel )
    {
      RELEASE(self);
      return nil;
    }
  
  return self;
}

-(void) runTest
{
	[self performSelector: sel];
}


+(void) runTestWithName: (const char *)n
{
  CREATE_AUTORELEASE_POOL(arp);
  TestCase *t=[[self alloc] initWithName: n];
  
  NS_DURING
    {
      [t runTest];
    }
  NS_HANDLER
    {
      NSLog(@"Caught exception during '%s'\n", n);
      NSLog(@"e='%@'\n", localException);
    }
  NS_ENDHANDLER
    
  DESTROY(arp);
}



-(void) objectIsKindOf: (Class)c : (id)o
{
	if (!o)
		[NSException
			raise: @"objectIsKindOf"
			format: @"got==nil"];

	if (![o isKindOf: c])
		[NSException
			raise: @"objectIsKindOf"
			format: @"expected '%s', got '%s'",c->name,[c class]->name];
}


-(void) equalInt: (int)expected : (int)got
{
	[self equalInt: expected : got  msg: nil];
}
-(void) equalInt: (int)expected : (int)got  msg: (NSString *)msg
{
	if (expected!=got)
		[NSException
			raise: @"equalInt"
			format: @"expected '%i', got '%i'. msg='%@'",expected,got,msg];
}

-(void) equalUnichar: (unichar)expected : (unichar)got
{
}
-(void) equalUnichar: (unichar)expected : (unichar)got  msg: (NSString *)msg
{
	if (expected!=got)
		[NSException
			raise: @"equalInt"
			format: @"expected '%04x', got '%04x'. msg='%@'",expected,got,msg];
}

-(void) equalString: (NSString *)expected : (NSString *)got
{
	if (!got)
		[NSException
			raise: @"equalString"
			format: @"got==nil"];

	if (![expected isEqual: got])
		[NSException
			raise: @"equalString"
			format: @"expected '%@', got '%@'",expected,got];
}

-(void) equalData: (NSData *)expected : (NSData *)got
{
	if (!got)
		[NSException
			raise: @"equalData"
			format: @"got==nil"];

	if (![expected isEqual: got])
		[NSException
			raise: @"equalData"
			format: @"expected:\n||%s||\ngot:\n||%s||",[expected cString],[got cString]];
}


@end