mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 08:36:32 +01:00
De-templatify Evoral::SMF which has no concept of time other than SMF time.
git-svn-id: svn://localhost/ardour2/branches/3.0@4571 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
5a48f99f72
commit
5d519f8bb1
7 changed files with 33 additions and 51 deletions
|
|
@ -7,7 +7,7 @@ CPPUNIT_TEST_SUITE_REGISTRATION( SMFTest );
|
|||
void
|
||||
SMFTest::createNewFileTest ()
|
||||
{
|
||||
TestSMF<Time> smf;
|
||||
TestSMF smf;
|
||||
smf.create("NewFile.mid");
|
||||
smf.close();
|
||||
CPPUNIT_ASSERT(access("NewFile.mid", R_OK) == 0);
|
||||
|
|
@ -17,7 +17,7 @@ SMFTest::createNewFileTest ()
|
|||
void
|
||||
SMFTest::takeFiveTest ()
|
||||
{
|
||||
TestSMF<Time> smf;
|
||||
TestSMF smf;
|
||||
smf.open("./test/testdata/TakeFive.mid");
|
||||
CPPUNIT_ASSERT(!smf.is_empty());
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue