8aca90e593
git-svn-id: svn://localhost/ardour2/branches/3.0@12315 d708f5d6-7413-0410-9779-e7cbd77b26cf
18 lines
409 B
C++
18 lines
409 B
C++
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class SignalsTest : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (SignalsTest);
|
|
CPPUNIT_TEST (testEmission);
|
|
CPPUNIT_TEST (testDestruction);
|
|
CPPUNIT_TEST (testScopedConnectionList);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
void setUp ();
|
|
void testEmission ();
|
|
void testDestruction ();
|
|
void testScopedConnectionList ();
|
|
};
|