revert inadvertently committed debug settings
[ardour.git] / libs / ardour / test / session_test.h
1
2 #include <cppunit/TestFixture.h>
3 #include <cppunit/extensions/HelperMacros.h>
4
5 class SessionTest : public CppUnit::TestFixture
6 {
7         CPPUNIT_TEST_SUITE (SessionTest);
8         CPPUNIT_TEST (new_session);
9         CPPUNIT_TEST (new_session_from_template);
10         CPPUNIT_TEST_SUITE_END ();
11
12 public:
13
14         void new_session ();
15         void new_session_from_template ();
16 };