mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-10 15:36:24 +01:00
18 lines
387 B
C++
18 lines
387 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:
|
|
virtual void setUp ();
|
|
virtual void tearDown ();
|
|
|
|
void new_session ();
|
|
void new_session_from_template ();
|
|
};
|