Edit

kc3-lang/ftgl/test/FTlayout-Test.cpp

Branch :

  • Show log

    Commit

  • Author : sammy
    Date : 2008-05-07 15:09:25
    Hash : 20620dc7
    Message : * Fixed and reactivated unit tests that were disabled during the pImpl refactoring.

  • test/FTlayout-Test.cpp
  • #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);