Code

39f7e616784d8d1b7dad48eb5e4c9a43d191a1fb
[inkscape.git] / src / xml / quote-test.h
1 #include <cxxtest/TestSuite.h>
3 class XmlQuoteTest : public CxxTest::TestSuite
4 {
5 public:
7     XmlQuoteTest()
8     {
9     }
10     virtual ~XmlQuoteTest() {}
12 // createSuite and destroySuite get us per-suite setup and teardown
13 // without us having to worry about static initialization order, etc.
14     static XmlQuoteTest *createSuite() { return new XmlQuoteTest(); }
15     static void destroySuite( XmlQuoteTest *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 :