mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-29 01:47:43 +01:00
16 lines
336 B
C++
16 lines
336 B
C++
|
|
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class SessionTest : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (SessionTest);
|
|
CPPUNIT_TEST (new_session);
|
|
CPPUNIT_TEST (new_session_from_template);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
|
|
void new_session ();
|
|
void new_session_from_template ();
|
|
};
|