summaryrefslogtreecommitdiff
path: root/libs/audiographer/tests/sndfile_writer_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/audiographer/tests/sndfile_writer_test.cc')
-rw-r--r--libs/audiographer/tests/sndfile_writer_test.cc42
1 files changed, 0 insertions, 42 deletions
diff --git a/libs/audiographer/tests/sndfile_writer_test.cc b/libs/audiographer/tests/sndfile_writer_test.cc
deleted file mode 100644
index 359d456f15..0000000000
--- a/libs/audiographer/tests/sndfile_writer_test.cc
+++ /dev/null
@@ -1,42 +0,0 @@
-#include "utils.h"
-#include "audiographer/sndfile_writer.h"
-
-using namespace AudioGrapher;
-
-class SndfileWriterTest : public CppUnit::TestFixture
-{
- CPPUNIT_TEST_SUITE (SndfileWriterTest);
- CPPUNIT_TEST (testProcess);
- CPPUNIT_TEST_SUITE_END ();
-
- public:
- void setUp()
- {
- frames = 128;
- random_data = TestUtils::init_random_data(frames);
- }
-
- void tearDown()
- {
- delete [] random_data;
- }
-
- void testProcess()
- {
- uint channels = 2;
- std::string filename ("test.wav");
- writer.reset (new SndfileWriter<float>(channels, 44100, SF_FORMAT_WAV | SF_FORMAT_FLOAT, filename));
- ProcessContext<float> c (random_data, frames, channels);
- c.set_flag (ProcessContext<float>::EndOfInput);
- writer->process (c);
- }
-
- private:
- boost::shared_ptr<SndfileWriter<float> > writer;
-
- float * random_data;
- nframes_t frames;
-};
-
-CPPUNIT_TEST_SUITE_REGISTRATION (SndfileWriterTest);
-