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/test_base.h | |
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/test_base.h')
-rw-r--r-- | tests/test_base.h | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/tests/test_base.h b/tests/test_base.h new file mode 100644 index 0000000..2ab20a4 --- /dev/null +++ b/tests/test_base.h @@ -0,0 +1,63 @@ +#ifndef TEST_BASE_H +#define TEST_BASE_H + +#include <iostream> +#include <cppunit/ui/text/TextTestRunner.h> +#include <cppunit/TestResult.h> +#include <cppunit/TestResultCollector.h> +#include <cppunit/extensions/HelperMacros.h> +#include <cppunit/BriefTestProgressListener.h> +#include <cppunit/extensions/TestFactoryRegistry.h> + +#include "../src/simpl/base.h" + +namespace simpl +{ + +// --------------------------------------------------------------------------- +// TestPeak +// --------------------------------------------------------------------------- +class TestPeak : public CPPUNIT_NS::TestCase { + CPPUNIT_TEST_SUITE(TestPeak); + CPPUNIT_TEST_SUITE_END(); + +protected: + static const double PRECISION = 0.001; + Peak* peak; + +public: + void setUp(); + void tearDown(); +}; + + +// --------------------------------------------------------------------------- +// TestFrame +// --------------------------------------------------------------------------- +class TestFrame : public CPPUNIT_NS::TestCase { + CPPUNIT_TEST_SUITE(TestFrame); + CPPUNIT_TEST(test_size); + CPPUNIT_TEST(test_max_peaks); + CPPUNIT_TEST(test_max_partials); + CPPUNIT_TEST(test_add_peak); + CPPUNIT_TEST(test_clear); + CPPUNIT_TEST_SUITE_END(); + +public: + void setUp(); + void tearDown(); + +protected: + static const double PRECISION = 0.001; + Frame* frame; + + void test_size(); + void test_max_peaks(); + void test_max_partials(); + void test_add_peak(); + void test_clear(); +}; + +} // end of namespace simpl + +#endif |