blob: 73aceed922f813d4e3fda0db2bb7890dd87f42f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#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(test_audio);
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();
void test_audio();
};
} // end of namespace simpl
#endif
|