aboutsummaryrefslogtreecommitdiff
path: root/src/unit/fstring.cpp
blob: 72755ebb6b95b40a28db006cda3e362b3ce6da6f (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
#include "fstring.h"
#include "unitsuite.h"

class Unit : public Bu::UnitSuite
{
public:
	Unit()
	{
		setName("FString");
		addTest( Unit::test1 );
	}

	virtual ~Unit()
	{
	}

	void test1()
	{
		unitTest( 1 == 1 );
		unitTest( 1 == 0 );
	}
};

int main( int argc, char *argv[] )
{
	return Unit().run( argc, argv );
}