From 10bc63c13cf9a6195d6b19f832258ff8e1d84f78 Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 25 Jan 2013 14:50:03 +0100 Subject: [tests] Add basic tests for SMS synthesis --- tests/test_synthesis.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'tests/test_synthesis.h') 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 -- cgit v1.2.3