diff options
author | John Glover <j@johnglover.net> | 2013-01-25 14:50:03 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-01-25 14:50:03 +0100 |
commit | 10bc63c13cf9a6195d6b19f832258ff8e1d84f78 (patch) | |
tree | 09f101412c47a485a6d2b623183354a9200db44c /tests/test_synthesis.h | |
parent | 42381e2a704850cca13c74110813fa865727cef8 (diff) | |
download | simpl-10bc63c13cf9a6195d6b19f832258ff8e1d84f78.tar.gz simpl-10bc63c13cf9a6195d6b19f832258ff8e1d84f78.tar.bz2 simpl-10bc63c13cf9a6195d6b19f832258ff8e1d84f78.zip |
[tests] Add basic tests for SMS synthesis
Diffstat (limited to 'tests/test_synthesis.h')
-rw-r--r-- | tests/test_synthesis.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/test_synthesis.h b/tests/test_synthesis.h index 5e818d9..15ba88b 100644 --- a/tests/test_synthesis.h +++ b/tests/test_synthesis.h @@ -56,6 +56,31 @@ protected: void test_changing_frame_size(); }; +// --------------------------------------------------------------------------- +// TestSMSSynthesis +// --------------------------------------------------------------------------- +class TestSMSSynthesis : public CPPUNIT_NS::TestCase { + CPPUNIT_TEST_SUITE(TestSMSSynthesis); + CPPUNIT_TEST(test_basic); + CPPUNIT_TEST(test_changing_frame_size); + CPPUNIT_TEST_SUITE_END(); + +public: + void setUp(); + void tearDown(); + +protected: + SMSPeakDetection _pd; + SMSPartialTracking _pt; + SMSSynthesis _synth; + SndfileHandle _sf; + Peaks _peaks; + Frames _frames; + + void test_basic(); + void test_changing_frame_size(); +}; + } // end of namespace simpl #endif |