Branch
Hash :
20620dc7
Author :
Date :
2008-05-07T15:09:25
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 <cppunit/extensions/HelperMacros.h>
#include <cppunit/TestCaller.h>
#include <cppunit/TestCase.h>
#include <cppunit/TestSuite.h>
#include "Fontdefs.h"
#include "FTGL/ftgl.h"
static const int SCRIPT = 2; // arabic
class FTLayoutTest : public CppUnit::TestCase
{
CPPUNIT_TEST_SUITE(FTLayoutTest);
CPPUNIT_TEST(testConstructor);
CPPUNIT_TEST_SUITE_END();
public:
FTLayoutTest() : CppUnit::TestCase("FTLayout Test")
{}
FTLayoutTest(const std::string& name) : CppUnit::TestCase(name) {}
void testConstructor()
{}
void setUp()
{}
void tearDown()
{}
private:
};
CPPUNIT_TEST_SUITE_REGISTRATION(FTLayoutTest);