summaryrefslogtreecommitdiff
path: root/tests/testbase.cpp
diff options
context:
space:
mode:
authorJohn Glover <glover.john@gmail.com>2011-08-24 09:23:11 +0100
committerJohn Glover <glover.john@gmail.com>2011-08-24 09:23:11 +0100
commit7929f46d0a78e5cac7c35c6da8e4ac7fbe2668e9 (patch)
tree6f2c035df697483ffc82f268c749bcaa7400da56 /tests/testbase.cpp
parent42d9e300d8ee16af3d005bb6146258515e517bf9 (diff)
downloadsimpl-7929f46d0a78e5cac7c35c6da8e4ac7fbe2668e9.tar.gz
simpl-7929f46d0a78e5cac7c35c6da8e4ac7fbe2668e9.tar.bz2
simpl-7929f46d0a78e5cac7c35c6da8e4ac7fbe2668e9.zip
Change frame objects to have pointers to number
arrays instead of having their own std::vector of samples
Diffstat (limited to 'tests/testbase.cpp')
-rw-r--r--tests/testbase.cpp8
1 files changed, 0 insertions, 8 deletions
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);
}