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
|
/***************************************************************************
testsuite.h
-------------------
begin : Mon Jul 11 20:01:57 CDT 2005
copyright : (C) 2005 by Andrew Ruder
email : aeruder@ksu.edu
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#import <Foundation/NSString.h>
#include <stdio.h>
#include <stdlib.h>
unsigned int numtests = 0;
unsigned int testspassed = 0;
#define testWrite(format, args...) fprintf(stdout, "%s", \
[[NSString stringWithFormat: \
(format), ## args ] cString])
inline BOOL PASS(NSString *desc) {
testWrite(@"PASS: %@\n" , desc);
numtests++;
testspassed++;
return YES;
}
inline BOOL FAIL(NSString *desc) {
testWrite(@"FAIL: %@\n" , desc);
numtests++;
return NO;
}
inline BOOL FINISH() {
NSLog(@"Passed %lu/%lu tests.", testspassed, numtests);
exit((testspassed == numtests) ? 0 : 1);
}
#define testTrue(desc, expression) \
(expression) ? PASS(desc) : FAIL(desc);
#define testFalse(desc, expression) \
(expression) ? FAIL(desc) : PASS(desc);
inline BOOL testEqual(NSString *desc, id o1, id o2) {
desc = [NSString stringWithFormat: @"%@: %@ == %@", desc, o1, o2];
return [o1 isEqual: o2] ? PASS(desc) : FAIL(desc);
}
inline BOOL testNotEqual(NSString *desc, id o1, id o2) {
desc = [NSString stringWithFormat: @"%@: %@ == %@", desc, o1, o2];
return (![o1 isEqual: o2]) ? PASS(desc) : FAIL(desc);
}
|