diff options
author | John Glover <j@johnglover.net> | 2013-06-21 13:01:34 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-06-21 13:01:34 +0200 |
commit | 0748af1f211540bced097b8438c29ea58d202739 (patch) | |
tree | e7188bc11b2160be318f56cf460e47700f9e2d94 /tests/test_synthesis.h | |
parent | acfa96cb1f22aab00a3ec310a93b40f0adf3fe35 (diff) | |
download | simpl-0748af1f211540bced097b8438c29ea58d202739.tar.gz simpl-0748af1f211540bced097b8438c29ea58d202739.tar.bz2 simpl-0748af1f211540bced097b8438c29ea58d202739.zip |
[tests] Add basic SndObjSynthesis tests
Diffstat (limited to 'tests/test_synthesis.h')
-rw-r--r-- | tests/test_synthesis.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/test_synthesis.h b/tests/test_synthesis.h index 8f9ec77..28c9add 100644 --- a/tests/test_synthesis.h +++ b/tests/test_synthesis.h @@ -80,6 +80,30 @@ protected: void test_changing_frame_size(); }; + +// --------------------------------------------------------------------------- +// TestSndObjSynthesis +// --------------------------------------------------------------------------- +class TestSndObjSynthesis : public CPPUNIT_NS::TestCase { + CPPUNIT_TEST_SUITE(TestSndObjSynthesis); + CPPUNIT_TEST(test_basic); + CPPUNIT_TEST(test_changing_frame_size); + CPPUNIT_TEST_SUITE_END(); + +public: + void setUp(); + +protected: + SndObjPeakDetection _pd; + SndObjPartialTracking _pt; + SndObjSynthesis _synth; + SndfileHandle _sf; + Frames _frames; + + void test_basic(); + void test_changing_frame_size(); +}; + } // end of namespace simpl #endif |