summaryrefslogtreecommitdiff
path: root/tests/test_partial_tracking.h
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2013-01-11 17:44:05 +0100
committerJohn Glover <j@johnglover.net>2013-01-11 17:44:05 +0100
commitad704b5e9c985765e14eb38a0922e702b8bfc25a (patch)
treea1aa9e55e4df46c1f30ec33d301370ae44b7f1af /tests/test_partial_tracking.h
parent971a93d0676914837cdef22afa26f020b7be9041 (diff)
downloadsimpl-ad704b5e9c985765e14eb38a0922e702b8bfc25a.tar.gz
simpl-ad704b5e9c985765e14eb38a0922e702b8bfc25a.tar.bz2
simpl-ad704b5e9c985765e14eb38a0922e702b8bfc25a.zip
[tests] Tidy up test C++ tests.
All tests can now be run from a single executable called 'tests' (created in the build directory).
Diffstat (limited to 'tests/test_partial_tracking.h')
-rw-r--r--tests/test_partial_tracking.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/tests/test_partial_tracking.h b/tests/test_partial_tracking.h
new file mode 100644
index 0000000..bd59b7f
--- /dev/null
+++ b/tests/test_partial_tracking.h
@@ -0,0 +1,80 @@
+#ifndef TEST_PARTIAL_TRACKING_H
+#define TEST_PARTIAL_TRACKING_H
+
+#include <cppunit/extensions/HelperMacros.h>
+
+#include "../src/simpl/base.h"
+#include "../src/simpl/peak_detection.h"
+#include "../src/simpl/partial_tracking.h"
+#include "test_common.h"
+
+namespace simpl
+{
+
+// ---------------------------------------------------------------------------
+// TestMQPartialTracking
+// ---------------------------------------------------------------------------
+class TestMQPartialTracking : public CPPUNIT_NS::TestCase {
+ CPPUNIT_TEST_SUITE(TestMQPartialTracking);
+ CPPUNIT_TEST(test_basic);
+ CPPUNIT_TEST(test_peaks);
+ CPPUNIT_TEST_SUITE_END();
+
+public:
+ void setUp();
+
+protected:
+ MQPeakDetection _pd;
+ MQPartialTracking _pt;
+ SndfileHandle _sf;
+
+ void test_basic();
+ void test_peaks();
+};
+
+
+// ---------------------------------------------------------------------------
+// TestSMSPartialTracking
+// ---------------------------------------------------------------------------
+class TestSMSPartialTracking : public CPPUNIT_NS::TestCase {
+ CPPUNIT_TEST_SUITE(TestSMSPartialTracking);
+ CPPUNIT_TEST(test_basic);
+ CPPUNIT_TEST(test_peaks);
+ CPPUNIT_TEST_SUITE_END();
+
+public:
+ void setUp();
+
+protected:
+ SMSPeakDetection _pd;
+ SMSPartialTracking _pt;
+ SndfileHandle _sf;
+
+ void test_basic();
+ void test_peaks();
+};
+
+// ---------------------------------------------------------------------------
+// TestLorisPartialTracking
+// ---------------------------------------------------------------------------
+class TestLorisPartialTracking : public CPPUNIT_NS::TestCase {
+ CPPUNIT_TEST_SUITE(TestLorisPartialTracking);
+ CPPUNIT_TEST(test_basic);
+ CPPUNIT_TEST(test_peaks);
+ CPPUNIT_TEST_SUITE_END();
+
+public:
+ void setUp();
+
+protected:
+ LorisPeakDetection _pd;
+ LorisPartialTracking _pt;
+ SndfileHandle _sf;
+
+ void test_basic();
+ void test_peaks();
+};
+
+} // end of namespace simpl
+
+#endif