From b6e19985df0729ebc4e99d4ab63897a6b5494a25 Mon Sep 17 00:00:00 2001 From: John Glover Date: Sun, 21 Aug 2011 18:14:50 +0100 Subject: Add next_frame_size method --- tests/testbase.cpp | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests') diff --git a/tests/testbase.cpp b/tests/testbase.cpp index c79cf18..34cefde 100644 --- a/tests/testbase.cpp +++ b/tests/testbase.cpp @@ -183,6 +183,7 @@ class TestPeakDetection : public CPPUNIT_NS::TestCase CPPUNIT_TEST(test_constructor); CPPUNIT_TEST(test_frame_size); CPPUNIT_TEST(test_static_frame_size); + CPPUNIT_TEST(test_next_frame_size); CPPUNIT_TEST(test_hop_size); CPPUNIT_TEST(test_max_peaks); CPPUNIT_TEST(test_window_type); @@ -228,6 +229,11 @@ protected: pd->static_frame_size(true); } + void test_next_frame_size() + { + CPPUNIT_ASSERT(pd->next_frame_size() == pd->frame_size()); + } + void test_hop_size() { pd->hop_size(128); -- cgit v1.2.3