blob: a107ee85571991c8f37c8387f0aa1e7cb1e86c9d (
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
#ifndef TEST_PEAK_DETECTION_H
#define TEST_PEAK_DETECTION_H
#include <cppunit/extensions/HelperMacros.h>
#include "../src/simpl/base.h"
#include "../src/simpl/peak_detection.h"
#include "../src/simpl/exceptions.h"
#include "test_common.h"
namespace simpl
{
// ---------------------------------------------------------------------------
// TestMQPeakDetection
// ---------------------------------------------------------------------------
class TestMQPeakDetection : public CPPUNIT_NS::TestCase {
CPPUNIT_TEST_SUITE(TestMQPeakDetection);
CPPUNIT_TEST(test_find_peaks_in_frame_basic);
CPPUNIT_TEST(test_find_peaks_basic);
CPPUNIT_TEST(test_find_peaks_audio);
CPPUNIT_TEST(test_find_peaks_change_hop_frame_size);
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
protected:
MQPeakDetection _pd;
SndfileHandle _sf;
void test_find_peaks_in_frame_basic();
void test_find_peaks_basic();
void test_find_peaks_audio();
void test_find_peaks_change_hop_frame_size();
};
// ---------------------------------------------------------------------------
// TestTWM
// ---------------------------------------------------------------------------
class TestTWM : public CPPUNIT_NS::TestCase {
CPPUNIT_TEST_SUITE(TestTWM);
CPPUNIT_TEST(test_basic);
CPPUNIT_TEST_SUITE_END();
protected:
void test_basic();
};
// ---------------------------------------------------------------------------
// TestLorisPeakDetection
// ---------------------------------------------------------------------------
class TestLorisPeakDetection : public CPPUNIT_NS::TestCase {
CPPUNIT_TEST_SUITE(TestLorisPeakDetection);
CPPUNIT_TEST(test_find_peaks_in_frame_basic);
CPPUNIT_TEST(test_find_peaks_basic);
CPPUNIT_TEST(test_find_peaks_audio);
CPPUNIT_TEST(test_find_peaks_change_hop_frame_size);
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
protected:
LorisPeakDetection _pd;
SndfileHandle _sf;
void test_find_peaks_in_frame_basic();
void test_find_peaks_basic();
void test_find_peaks_audio();
void test_find_peaks_change_hop_frame_size();
};
// ---------------------------------------------------------------------------
// TestSndObjPeakDetection
// ---------------------------------------------------------------------------
class TestSndObjPeakDetection : public CPPUNIT_NS::TestCase {
CPPUNIT_TEST_SUITE(TestSndObjPeakDetection);
CPPUNIT_TEST(test_find_peaks_in_frame_basic);
CPPUNIT_TEST(test_find_peaks_basic);
CPPUNIT_TEST(test_find_peaks_audio);
CPPUNIT_TEST(test_find_peaks_change_hop_frame_size);
CPPUNIT_TEST_SUITE_END();
public:
void setUp();
protected:
SndObjPeakDetection _pd;
SndfileHandle _sf;
void test_find_peaks_in_frame_basic();
void test_find_peaks_basic();
void test_find_peaks_audio();
void test_find_peaks_change_hop_frame_size();
};
} // end of namespace simpl
#endif
|