summaryrefslogtreecommitdiff
path: root/libs/canvas/test/xml.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-04-04 00:32:52 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2013-04-04 00:32:52 -0400
commitaaea166135ace01709f7e0be64f40be80f4107ec (patch)
tree0e794ef7a723e4aaf909b841a6816e405b4ceca1 /libs/canvas/test/xml.h
parent1d8bac08c0c00d44e22c581768a275e1b21a99a7 (diff)
initial commit of hand merging, plus getting "ancient" waf script to work correctly
Diffstat (limited to 'libs/canvas/test/xml.h')
-rw-r--r--libs/canvas/test/xml.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/libs/canvas/test/xml.h b/libs/canvas/test/xml.h
new file mode 100644
index 0000000000..fbe606c028
--- /dev/null
+++ b/libs/canvas/test/xml.h
@@ -0,0 +1,17 @@
+#include <cppunit/TestFixture.h>
+#include <cppunit/extensions/HelperMacros.h>
+
+class XMLTest : public CppUnit::TestFixture
+{
+ CPPUNIT_TEST_SUITE (XMLTest);
+ CPPUNIT_TEST (get);
+ CPPUNIT_TEST (set);
+ CPPUNIT_TEST_SUITE_END ();
+
+public:
+ void get ();
+ void set ();
+
+private:
+ void check (std::string const &);
+};