diff options
author | John Glover <j@johnglover.net> | 2013-02-16 15:22:46 +0000 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-02-16 15:22:46 +0000 |
commit | d91fc3a5b7b9d7a4ca85882b029fefe2c8daa156 (patch) | |
tree | 0a615b89f3268d11762477ed991cff586738d458 /tests/test_peak_detection.h | |
parent | 2b9cec80434f0bef506633deff97d289b483c97d (diff) | |
download | simpl-d91fc3a5b7b9d7a4ca85882b029fefe2c8daa156.tar.gz simpl-d91fc3a5b7b9d7a4ca85882b029fefe2c8daa156.tar.bz2 simpl-d91fc3a5b7b9d7a4ca85882b029fefe2c8daa156.zip |
[mq] Add C++ implementation of TWM
Diffstat (limited to 'tests/test_peak_detection.h')
-rw-r--r-- | tests/test_peak_detection.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test_peak_detection.h b/tests/test_peak_detection.h index 5b36f19..2b574cb 100644 --- a/tests/test_peak_detection.h +++ b/tests/test_peak_detection.h @@ -37,6 +37,19 @@ protected: // --------------------------------------------------------------------------- +// TestTWM +// --------------------------------------------------------------------------- +class TestTWM : public CPPUNIT_NS::TestCase { + CPPUNIT_TEST_SUITE(TestTWM); + CPPUNIT_TEST(test_basic); + CPPUNIT_TEST_SUITE_END(); + +protected: + void test_basic(); +}; + + +// --------------------------------------------------------------------------- // TestLorisPeakDetection // --------------------------------------------------------------------------- class TestLorisPeakDetection : public CPPUNIT_NS::TestCase { |