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.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/tests/test_synthesis.h b/tests/test_synthesis.h
new file mode 100644
index 0000000..64ee65c
--- /dev/null
+++ b/tests/test_synthesis.h
@@ -0,0 +1,57 @@
+#ifndef TEST_SYNTHESIS_H
+#define TEST_SYNTHESIS_H
+
+#include <cppunit/extensions/HelperMacros.h>
+
+#include "../src/simpl/base.h"
+#include "../src/simpl/peak_detection.h"
+#include "../src/simpl/partial_tracking.h"
+#include "../src/simpl/synthesis.h"
+#include "test_common.h"
+
+namespace simpl
+{
+
+// ---------------------------------------------------------------------------
+// TestMQSynthesis
+// ---------------------------------------------------------------------------
+class TestMQSynthesis : public CPPUNIT_NS::TestCase {
+ CPPUNIT_TEST_SUITE(TestMQSynthesis);
+ CPPUNIT_TEST(test_basic);
+ CPPUNIT_TEST_SUITE_END();
+
+public:
+ void setUp();
+
+protected:
+ MQPeakDetection _pd;
+ MQPartialTracking _pt;
+ MQSynthesis _synth;
+ SndfileHandle _sf;
+
+ void test_basic();
+};
+
+// ---------------------------------------------------------------------------
+// TestLorisSynthesis
+// ---------------------------------------------------------------------------
+class TestLorisSynthesis : public CPPUNIT_NS::TestCase {
+ CPPUNIT_TEST_SUITE(TestLorisSynthesis);
+ CPPUNIT_TEST(test_basic);
+ CPPUNIT_TEST_SUITE_END();
+
+public:
+ void setUp();
+
+protected:
+ LorisPeakDetection _pd;
+ LorisPartialTracking _pt;
+ LorisSynthesis _synth;
+ SndfileHandle _sf;
+
+ void test_basic();
+};
+
+} // end of namespace simpl
+
+#endif