blob: 5e59026e0b65724569f2fcc1be3a5693e373b065 (
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
88
89
90
91
92
93
|
/*
* Copyright (C) 2007-2008 Xagasoft, All rights reserved.
*
* This file is part of the libbu++ library and is released under the
* terms of the license contained in the file LICENSE.
*/
#include "unitsuite.h"
Bu::UnitSuite::UnitSuite() :
iOptions( 0 )
{
}
Bu::UnitSuite::UnitSuite( int iOptions ) :
iOptions( iOptions )
{
}
Bu::UnitSuite::~UnitSuite()
{
}
int Bu::UnitSuite::run( int argc, char *argv[] )
{
for( TestList::iterator i = lTests.begin(); i != lTests.end(); i++ )
{
printf("%s: ", i->sName.getStr() );
fflush( stdout );
try
{
(this->*(i->fTest))();
printf("passed.\n");
}
catch( Failed &e )
{
if( e.bFile )
{
printf("unitTest(%s) failed. (%s:%d)\n",
e.str.getStr(),
e.sFile.getStr(),
e.nLine
);
}
else
{
printf("unitTest(%s) failed.\n",
e.str.getStr()
);
}
if( (iOptions & optStopOnError) )
return 0;
}
catch( std::exception &e )
{
printf("failed with unknown exception. what: %s\n", e.what() );
if( (iOptions & optStopOnError) )
return 0;
}
catch( ... )
{
printf("failed with external exception.\n");
if( (iOptions & optStopOnError) )
return 0;
}
}
return 0;
}
void Bu::UnitSuite::add( Test fTest, Bu::FString sName )
{
TestInfo ti;
ti.sName = sName;
long index = ti.sName.rfind("::");
if( index != -1 )
{
FString tmp = sSuiteName;
tmp += ti.sName.getStr()+index;
ti.sName = tmp;
}
ti.fTest = fTest;
lTests.push_back( ti );
}
void Bu::UnitSuite::setName( const FString &sName )
{
sSuiteName = sName;
}
|