diff options
-rw-r--r-- | tests/test_synthesis.cpp | 4 | ||||
-rw-r--r-- | tests/test_synthesis.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/test_synthesis.cpp b/tests/test_synthesis.cpp index d1a8658..2675589 100644 --- a/tests/test_synthesis.cpp +++ b/tests/test_synthesis.cpp @@ -133,3 +133,7 @@ void TestLorisSynthesis::setUp() { void TestLorisSynthesis::test_basic() { ::test_basic(&_pd, &_pt, &_synth, &_sf); } + +void TestLorisSynthesis::test_changing_frame_size() { + ::test_changing_frame_size(&_pd, &_pt, &_synth, &_sf); +} diff --git a/tests/test_synthesis.h b/tests/test_synthesis.h index 251fa93..5e818d9 100644 --- a/tests/test_synthesis.h +++ b/tests/test_synthesis.h @@ -40,6 +40,7 @@ protected: class TestLorisSynthesis : public CPPUNIT_NS::TestCase { CPPUNIT_TEST_SUITE(TestLorisSynthesis); CPPUNIT_TEST(test_basic); + CPPUNIT_TEST(test_changing_frame_size); CPPUNIT_TEST_SUITE_END(); public: @@ -52,6 +53,7 @@ protected: SndfileHandle _sf; void test_basic(); + void test_changing_frame_size(); }; } // end of namespace simpl |