Starting future layout support tests
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 38 39 40 41
diff --git a/test/FTlayout-Test.cpp b/test/FTlayout-Test.cpp
new file mode 100755
index 0000000..2804ae4
--- /dev/null
+++ b/test/FTlayout-Test.cpp
@@ -0,0 +1,35 @@
+#include <cppunit/extensions/HelperMacros.h>
+#include <cppunit/TestCaller.h>
+#include <cppunit/TestCase.h>
+#include <cppunit/TestSuite.h>
+
+
+
+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);
+