File: FTlayout-Test.cpp

package info (click to toggle)
ftgl 2.1.3~rc5-4
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,692 kB
  • sloc: cpp: 15,756; sh: 982; ansic: 625; makefile: 387
file content (37 lines) | stat: -rw-r--r-- 719 bytes parent folder | download | duplicates (8)
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);