diff options
author | John Glover <j@johnglover.net> | 2013-06-14 11:47:06 +0200 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-06-14 11:47:06 +0200 |
commit | 364d1a9352cf1adcf08fbd4f0e793f24540d7402 (patch) | |
tree | b001aadeb38c96104c6fbd026519c7161486cc28 /tests/test_peak_detection.h | |
parent | 2114ea951d728527ff5e833030d717c635b51821 (diff) | |
download | simpl-364d1a9352cf1adcf08fbd4f0e793f24540d7402.tar.gz simpl-364d1a9352cf1adcf08fbd4f0e793f24540d7402.tar.bz2 simpl-364d1a9352cf1adcf08fbd4f0e793f24540d7402.zip |
Add basic SndObjPeakDetection tests. Fix memory leaks.
Diffstat (limited to 'tests/test_peak_detection.h')
-rw-r--r-- | tests/test_peak_detection.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/test_peak_detection.h b/tests/test_peak_detection.h index 2b574cb..a107ee8 100644 --- a/tests/test_peak_detection.h +++ b/tests/test_peak_detection.h @@ -73,6 +73,31 @@ protected: void test_find_peaks_change_hop_frame_size(); }; + +// --------------------------------------------------------------------------- +// TestSndObjPeakDetection +// --------------------------------------------------------------------------- +class TestSndObjPeakDetection : public CPPUNIT_NS::TestCase { + CPPUNIT_TEST_SUITE(TestSndObjPeakDetection); + CPPUNIT_TEST(test_find_peaks_in_frame_basic); + CPPUNIT_TEST(test_find_peaks_basic); + CPPUNIT_TEST(test_find_peaks_audio); + CPPUNIT_TEST(test_find_peaks_change_hop_frame_size); + CPPUNIT_TEST_SUITE_END(); + +public: + void setUp(); + +protected: + SndObjPeakDetection _pd; + SndfileHandle _sf; + + void test_find_peaks_in_frame_basic(); + void test_find_peaks_basic(); + void test_find_peaks_audio(); + void test_find_peaks_change_hop_frame_size(); +}; + } // end of namespace simpl #endif |