NOOP, remove trailing tabs/whitespace.
[ardour.git] / libs / canvas / test / xml.h
1 #include <cppunit/TestFixture.h>
2 #include <cppunit/extensions/HelperMacros.h>
3
4 class XMLTest : public CppUnit::TestFixture
5 {
6         CPPUNIT_TEST_SUITE (XMLTest);
7         CPPUNIT_TEST (get);
8         CPPUNIT_TEST (set);
9         CPPUNIT_TEST_SUITE_END ();
10
11 public:
12         void get ();
13         void set ();
14
15 private:
16         void check (std::string const &);
17 };