summaryrefslogtreecommitdiff
path: root/tests/test_synthesis.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_synthesis.h')
-rw-r--r--tests/test_synthesis.h25
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