From ad704b5e9c985765e14eb38a0922e702b8bfc25a Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 11 Jan 2013 17:44:05 +0100 Subject: [tests] Tidy up test C++ tests. All tests can now be run from a single executable called 'tests' (created in the build directory). --- tests/tests.cpp | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tests/tests.cpp (limited to 'tests/tests.cpp') diff --git a/tests/tests.cpp b/tests/tests.cpp new file mode 100644 index 0000000..d13b4f7 --- /dev/null +++ b/tests/tests.cpp @@ -0,0 +1,24 @@ +#include +#include +#include + +#include "test_base.h" +#include "test_peak_detection.h" +#include "test_partial_tracking.h" +#include "test_synthesis.h" + +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestPeak); +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestFrame); +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestMQPeakDetection); +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestLorisPeakDetection); +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestMQPartialTracking); +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestSMSPartialTracking); +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestLorisPartialTracking); +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestMQSynthesis); +CPPUNIT_TEST_SUITE_REGISTRATION(simpl::TestLorisSynthesis); + +int main(int arg, char **argv) { + CppUnit::TextTestRunner runner; + runner.addTest(CppUnit::TestFactoryRegistry::getRegistry().makeTest()); + return runner.run("", false); +} -- cgit v1.2.3