Commit cce9bb294cdaa8e81a497a845c4719df5202a604

henry 2003-01-10T03:26:58

Starting future layout support tests

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);
+