summaryrefslogtreecommitdiff
path: root/libs/canvas/test/render.h
blob: 7596a565736e430b190d69eb1c6b99790b9bf05a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>

class RenderTest : public CppUnit::TestFixture
{
	CPPUNIT_TEST_SUITE (RenderTest);
	CPPUNIT_TEST (basics);
	CPPUNIT_TEST_SUITE_END ();

public:
	void basics ();
	void check (std::string const &);
};