summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2011-08-29 13:42:32 +0100
committerJohn Glover <glover.john@gmail.com>2011-08-29 13:42:32 +0100
commit4f3b40c3ad337a54168844058adfd3d7cb1f0aea (patch)
treebaad2f8c142832ed2d4d5bef69dfe95c56e16473 /tests
parentaf0755de97b8cbe80467061826fa5ccba28a182e (diff)
downloadsimpl-4f3b40c3ad337a54168844058adfd3d7cb1f0aea.tar.gz
simpl-4f3b40c3ad337a54168844058adfd3d7cb1f0aea.tar.bz2
simpl-4f3b40c3ad337a54168844058adfd3d7cb1f0aea.zip
Tidy up PeakDetection::find_peaks
Diffstat (limited to 'tests')
-rw-r--r--tests/testbase.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/testbase.cpp b/tests/testbase.cpp
index 2677ae7..f214a30 100644
--- a/tests/testbase.cpp
+++ b/tests/testbase.cpp
@@ -352,7 +352,15 @@ protected:
void test_find_peaks()
{
-
+ const samples audio = samples(1024);
+ pd->frame_size(256);
+ pd->hop_size(256);
+ Frames* frames = pd->find_peaks(audio);
+ CPPUNIT_ASSERT(frames->size() == 4);
+ for(Frames::iterator i = frames->begin(); i != frames->end(); i++)
+ {
+ CPPUNIT_ASSERT(i->num_peaks() == 0);
+ }
}
public: