blob: 2c6bf7a65b12eb61306f0b82624388fbeea0ccd6 (
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
|
#include "fstring.h"
#include "unitsuite.h"
class Unit : public Bu::UnitSuite
{
public:
Unit()
{
setName("FString");
addTest( Unit::compare1 );
addTest( Unit::compare2 );
}
virtual ~Unit()
{
}
void compare1()
{
Bu::FString b("Bob");
unitTest( !(b == "Bobo") );
unitTest( b == "Bob" );
}
void compare2()
{
Bu::FString b("Bobo");
unitTest( !(b == "Bob") );
unitTest( b == "Bobo" );
}
};
int main( int argc, char *argv[] )
{
return Unit().run( argc, argv );
}
|