From 7929f46d0a78e5cac7c35c6da8e4ac7fbe2668e9 Mon Sep 17 00:00:00 2001 From: John Glover Date: Wed, 24 Aug 2011 09:23:11 +0100 Subject: Change frame objects to have pointers to number arrays instead of having their own std::vector of samples --- tests/testbase.cpp | 8 -------- 1 file changed, 8 deletions(-) (limited to 'tests') diff --git a/tests/testbase.cpp b/tests/testbase.cpp index 34cefde..4e1293a 100644 --- a/tests/testbase.cpp +++ b/tests/testbase.cpp @@ -125,10 +125,6 @@ protected: void test_constructor() { CPPUNIT_ASSERT(frame->size() == 512); - CPPUNIT_ASSERT(frame->audio.size() == 512); - CPPUNIT_ASSERT(frame->synth.size() == 512); - CPPUNIT_ASSERT(frame->residual.size() == 512); - CPPUNIT_ASSERT(frame->synth_residual.size() == 512); CPPUNIT_ASSERT(frame->max_peaks() == 100); CPPUNIT_ASSERT(frame->peaks.size() == 100); CPPUNIT_ASSERT(frame->max_partials() == 100); @@ -139,10 +135,6 @@ protected: { frame->size(1024); CPPUNIT_ASSERT(frame->size() == 1024); - CPPUNIT_ASSERT(frame->audio.size() == 1024); - CPPUNIT_ASSERT(frame->synth.size() == 1024); - CPPUNIT_ASSERT(frame->residual.size() == 1024); - CPPUNIT_ASSERT(frame->synth_residual.size() == 1024); frame->size(512); } -- cgit v1.2.3