mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
17 lines
311 B
C++
17 lines
311 B
C++
#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 &);
|
|
};
|