summaryrefslogtreecommitdiff
path: root/tests/test_synthesis.h
blob: 64ee65ca04df34b8186c1b0f632e93114b3e8b32 (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
#ifndef TEST_SYNTHESIS_H
#define TEST_SYNTHESIS_H

#include <cppunit/extensions/HelperMacros.h>

#include "../src/simpl/base.h"
#include "../src/simpl/peak_detection.h"
#include "../src/simpl/partial_tracking.h"
#include "../src/simpl/synthesis.h"
#include "test_common.h"

namespace simpl
{

// ---------------------------------------------------------------------------
//	TestMQSynthesis
// ---------------------------------------------------------------------------
class TestMQSynthesis : public CPPUNIT_NS::TestCase {
    CPPUNIT_TEST_SUITE(TestMQSynthesis);
    CPPUNIT_TEST(test_basic);
    CPPUNIT_TEST_SUITE_END();

public:
    void setUp();

protected:
    MQPeakDetection _pd;
    MQPartialTracking _pt;
    MQSynthesis _synth;
    SndfileHandle _sf;

    void test_basic();
};

// ---------------------------------------------------------------------------
//	TestLorisSynthesis
// ---------------------------------------------------------------------------
class TestLorisSynthesis : public CPPUNIT_NS::TestCase {
    CPPUNIT_TEST_SUITE(TestLorisSynthesis);
    CPPUNIT_TEST(test_basic);
    CPPUNIT_TEST_SUITE_END();

public:
    void setUp();

protected:
    LorisPeakDetection _pd;
    LorisPartialTracking _pt;
    LorisSynthesis _synth;
    SndfileHandle _sf;

    void test_basic();
};

} // end of namespace simpl

#endif