mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
14 lines
279 B
C++
14 lines
279 B
C++
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
class RenderTest : public CppUnit::TestFixture
|
|
{
|
|
CPPUNIT_TEST_SUITE (RenderTest);
|
|
CPPUNIT_TEST (basics);
|
|
CPPUNIT_TEST_SUITE_END ();
|
|
|
|
public:
|
|
void basics ();
|
|
void check (std::string const &);
|
|
};
|
|
|