diff options
author | John Glover <j@johnglover.net> | 2013-06-22 18:39:17 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-06-22 18:39:17 +0200 |
commit | 142eb92a7669debb3748d85e56daa0e83d39464d (patch) | |
tree | a411cb183ab7b2dd80a605d8e6d699df708b51ca /tests/test_residual.h | |
parent | f10e69931e1eb9d484bc7431645529d756e19861 (diff) | |
download | simpl-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.h | 37 |
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 |