summaryrefslogtreecommitdiff
path: root/tests/test_partial_tracking.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_partial_tracking.cpp')
-rw-r--r--tests/test_partial_tracking.cpp60
1 files changed, 6 insertions, 54 deletions
diff --git a/tests/test_partial_tracking.cpp b/tests/test_partial_tracking.cpp
index b4872cd..2363c9d 100644
--- a/tests/test_partial_tracking.cpp
+++ b/tests/test_partial_tracking.cpp
@@ -41,27 +41,15 @@ void TestMQPartialTracking::test_basic() {
void TestMQPartialTracking::test_peaks() {
int num_frames = 8;
Frames frames;
- Peaks peaks;
_pd.clear();
_pt.reset();
for(int i = 0; i < num_frames; i++) {
- Peak* p = new Peak();
- p->amplitude = 0.4;
- p->frequency = 220;
-
- Peak* p2 = new Peak();
- p2->amplitude = 0.2;
- p2->frequency = 440;
-
Frame* f = new Frame();
- f->add_peak(p);
- f->add_peak(p2);
-
+ f->add_peak(0.4, 220, 0, 0);
+ f->add_peak(0.2, 440, 0, 0);
frames.push_back(f);
- peaks.push_back(p);
- peaks.push_back(p2);
}
_pt.find_partials(frames);
@@ -78,10 +66,6 @@ void TestMQPartialTracking::test_peaks() {
PRECISION);
}
- for(int i = 0; i < num_frames * 2; i++) {
- delete peaks[i];
- }
-
for(int i = 0; i < num_frames; i++) {
delete frames[i];
}
@@ -131,27 +115,15 @@ void TestSMSPartialTracking::test_basic() {
void TestSMSPartialTracking::test_peaks() {
int num_frames = 8;
Frames frames;
- Peaks peaks;
_pd.clear();
_pt.reset();
for(int i = 0; i < num_frames; i++) {
- Peak* p = new Peak();
- p->amplitude = 0.4;
- p->frequency = 220;
-
- Peak* p2 = new Peak();
- p2->amplitude = 0.2;
- p2->frequency = 440;
-
Frame* f = new Frame();
- f->add_peak(p);
- f->add_peak(p2);
-
+ f->add_peak(0.4, 220, 0, 0);
+ f->add_peak(0.2, 440, 0, 0);
frames.push_back(f);
- peaks.push_back(p);
- peaks.push_back(p2);
}
_pt.find_partials(frames);
@@ -168,10 +140,6 @@ void TestSMSPartialTracking::test_peaks() {
PRECISION);
}
- for(int i = 0; i < num_frames * 2; i++) {
- delete peaks[i];
- }
-
for(int i = 0; i < num_frames; i++) {
delete frames[i];
}
@@ -217,27 +185,15 @@ void TestLorisPartialTracking::test_basic() {
void TestLorisPartialTracking::test_peaks() {
int num_frames = 8;
Frames frames;
- Peaks peaks;
_pd.clear();
_pt.reset();
for(int i = 0; i < num_frames; i++) {
- Peak* p = new Peak();
- p->amplitude = 0.4;
- p->frequency = 220;
-
- Peak* p2 = new Peak();
- p2->amplitude = 0.2;
- p2->frequency = 440;
-
Frame* f = new Frame();
- f->add_peak(p);
- f->add_peak(p2);
-
+ f->add_peak(0.4, 220, 0, 0);
+ f->add_peak(0.2, 440, 0, 0);
frames.push_back(f);
- peaks.push_back(p);
- peaks.push_back(p2);
}
_pt.find_partials(frames);
@@ -254,10 +210,6 @@ void TestLorisPartialTracking::test_peaks() {
PRECISION);
}
- for(int i = 0; i < num_frames * 2; i++) {
- delete peaks[i];
- }
-
for(int i = 0; i < num_frames; i++) {
delete frames[i];
}