summaryrefslogtreecommitdiff
path: root/libs/canvas/test/types.h
blob: 833b234579831ac0e2df216eff2e5addf12ca7b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

class TypesTest : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE (TypesTest);
	CPPUNIT_TEST (intersect);
	CPPUNIT_TEST (extend);
	CPPUNIT_TEST (test_safe_add);
	CPPUNIT_TEST_SUITE_END ();

public:
	void intersect ();
	void extend ();
	void test_safe_add ();
};