diff options
author | John Glover <j@johnglover.net> | 2013-06-22 17:52:59 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-06-22 17:52:59 +0200 |
commit | f10e69931e1eb9d484bc7431645529d756e19861 (patch) | |
tree | 75b2d06ec019c5ed523d872bee55b8bb86c5cbb3 /tests/test_partial_tracking.h | |
parent | 86d6069c6d735325463fda20d938bc19cf4da41b (diff) | |
download | simpl-f10e69931e1eb9d484bc7431645529d756e19861.tar.gz simpl-f10e69931e1eb9d484bc7431645529d756e19861.tar.bz2 simpl-f10e69931e1eb9d484bc7431645529d756e19861.zip |
[tests] Refactor partial tracking tests.
Diffstat (limited to 'tests/test_partial_tracking.h')
-rw-r--r-- | tests/test_partial_tracking.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/test_partial_tracking.h b/tests/test_partial_tracking.h index e5715de..918b59e 100644 --- a/tests/test_partial_tracking.h +++ b/tests/test_partial_tracking.h @@ -39,8 +39,11 @@ protected: class TestSMSPartialTracking : public CPPUNIT_NS::TestCase { CPPUNIT_TEST_SUITE(TestSMSPartialTracking); CPPUNIT_TEST(test_basic); + CPPUNIT_TEST(test_basic_harm); CPPUNIT_TEST(test_change_num_partials); + CPPUNIT_TEST(test_change_num_partials_harm); CPPUNIT_TEST(test_peaks); + CPPUNIT_TEST(test_peaks_harm); CPPUNIT_TEST(test_streaming); CPPUNIT_TEST_SUITE_END(); @@ -50,11 +53,15 @@ public: protected: SMSPeakDetection _pd; SMSPartialTracking _pt; + SMSPartialTracking _pt_harm; SndfileHandle _sf; void test_basic(); + void test_basic_harm(); void test_change_num_partials(); + void test_change_num_partials_harm(); void test_peaks(); + void test_peaks_harm(); void test_streaming(); }; |