diff options
author | John Glover <j@johnglover.net> | 2013-01-11 17:44:05 +0100 |
---|---|---|
committer | John Glover <j@johnglover.net> | 2013-01-11 17:44:05 +0100 |
commit | ad704b5e9c985765e14eb38a0922e702b8bfc25a (patch) | |
tree | a1aa9e55e4df46c1f30ec33d301370ae44b7f1af /tests/tests.cpp | |
parent | 971a93d0676914837cdef22afa26f020b7be9041 (diff) | |
download | simpl-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/tests.cpp')
-rw-r--r-- | tests/tests.cpp | 24 |
1 files changed, 24 insertions, 0 deletions
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 <cppunit/ui/text/TextTestRunner.h> +#include <cppunit/extensions/HelperMacros.h> +#include <cppunit/extensions/TestFactoryRegistry.h> + +#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); +} |