Update evoral test suite

This commit is contained in:
David Robillard 2016-12-04 18:49:56 -05:00
parent 9a848d5ba6
commit 5ab2e34b2c
3 changed files with 65 additions and 0 deletions

View file

@ -0,0 +1,16 @@
#include <cppunit/TestFixture.h>
#include <cppunit/extensions/HelperMacros.h>
class NoteTest : public CppUnit::TestFixture
{
CPPUNIT_TEST_SUITE (NoteTest);
CPPUNIT_TEST (copyTest);
CPPUNIT_TEST (idTest);
CPPUNIT_TEST_SUITE_END ();
public:
void copyTest ();
void idTest ();
};