Use XMLNode::set_property API in xml tests
[ardour.git] / libs / pbd / test / signals_test.h
1 #include <cppunit/TestFixture.h>
2 #include <cppunit/extensions/HelperMacros.h>
3
4 class SignalsTest : public CppUnit::TestFixture
5 {
6         CPPUNIT_TEST_SUITE (SignalsTest);
7         CPPUNIT_TEST (testEmission);
8         CPPUNIT_TEST (testDestruction);
9         CPPUNIT_TEST (testScopedConnectionList);
10         CPPUNIT_TEST_SUITE_END ();
11
12 public:
13         void setUp ();
14         void testEmission ();
15         void testDestruction ();
16         void testScopedConnectionList ();
17 };