ardour/libs/ardour/test/resampled_source_test.h
Carl Hetherington 73461494d7 Add simple framewalk_to_beats test and normalise naming
of test files.


git-svn-id: svn://localhost/ardour2/branches/3.0@10954 d708f5d6-7413-0410-9779-e7cbd77b26cf
2011-12-09 19:59:23 +00:00

12 lines
265 B
C++

#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
class ResampledSourceTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE (ResampledSourceTest);
CPPUNIT_TEST (seekTest);
CPPUNIT_TEST_SUITE_END ();
public:
void seekTest ();
};