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

class Unit : public Bu::UnitSuite
{
public:
	Unit()
	{
		setName("SFile");
		addTest( Unit::test );
	}

	virtual ~Unit() { }

	//
	// Tests go here
	//
	void test()
	{
		unitTest( 1 == 1 );
	}
};

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