Code

fixed broken page unit changing in Document Properties
[inkscape.git] / src / xml / repr-action-test.h
1 #include <cxxtest/TestSuite.h>
3 class XmlReprActionTest : public CxxTest::TestSuite
4 {
5 public:
7     XmlReprActionTest()
8     {
9     }
10     virtual ~XmlReprActionTest() {}
12 // createSuite and destroySuite get us per-suite setup and teardown
13 // without us having to worry about static initialization order, etc.
14     static XmlReprActionTest *createSuite() { return new XmlReprActionTest(); }
15     static void destroySuite( XmlReprActionTest *suite ) { delete suite; }
17     void testFoo()
18     {
19     }
20 };
22 /*
23   Local Variables:
24   mode:c++
25   c-file-style:"stroustrup"
26   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
27   indent-tabs-mode:nil
28   fill-column:99
29   End:
30 */
31 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :