summaryrefslogtreecommitdiff
path: root/libs/ardour/test/session_test.h
blob: cadab67d3b9df9df2d3f25256214ba1fc9b9ae7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

#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 ();
};