summaryrefslogtreecommitdiff
path: root/tests/test_residual.h
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2013-06-22 18:39:17 +0200
committerJohn Glover <j@johnglover.net>2013-06-22 18:39:17 +0200
commit142eb92a7669debb3748d85e56daa0e83d39464d (patch)
treea411cb183ab7b2dd80a605d8e6d699df708b51ca /tests/test_residual.h
parentf10e69931e1eb9d484bc7431645529d756e19861 (diff)
downloadsimpl-142eb92a7669debb3748d85e56daa0e83d39464d.tar.gz
simpl-142eb92a7669debb3748d85e56daa0e83d39464d.tar.bz2
simpl-142eb92a7669debb3748d85e56daa0e83d39464d.zip
[residual] Add basic test for SMSResidual
Diffstat (limited to 'tests/test_residual.h')
-rw-r--r--tests/test_residual.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/test_residual.h b/tests/test_residual.h
new file mode 100644
index 0000000..60f4eb9
--- /dev/null
+++ b/tests/test_residual.h
@@ -0,0 +1,37 @@
+#ifndef TEST_RESIDUAL_H
+#define TEST_RESIDUAL_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 "../src/simpl/residual.h"
+#include "test_common.h"
+
+namespace simpl
+{
+
+// ---------------------------------------------------------------------------
+// TestSMSResidual
+// ---------------------------------------------------------------------------
+class TestSMSResidual : public CPPUNIT_NS::TestCase {
+ CPPUNIT_TEST_SUITE(TestSMSResidual);
+ CPPUNIT_TEST(test_basic);
+ CPPUNIT_TEST_SUITE_END();
+
+public:
+ void setUp();
+
+protected:
+ SMSResidual _res;
+ SndfileHandle _sf;
+ Frames _frames;
+
+ void test_basic();
+};
+
+} // end of namespace simpl
+
+#endif