Small steps towards rolling backwards..
[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 (open_session_utf8_path);
11         CPPUNIT_TEST_SUITE_END ();
12
13 public:
14
15         void new_session ();
16         void new_session_from_template ();
17         void open_session_utf8_path ();
18 };