From 0748af1f211540bced097b8438c29ea58d202739 Mon Sep 17 00:00:00 2001 From: John Glover Date: Fri, 21 Jun 2013 13:01:34 +0200 Subject: [tests] Add basic SndObjSynthesis tests --- tests/test_synthesis.cpp | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'tests/test_synthesis.cpp') diff --git a/tests/test_synthesis.cpp b/tests/test_synthesis.cpp index c861be0..85ae5d7 100644 --- a/tests/test_synthesis.cpp +++ b/tests/test_synthesis.cpp @@ -183,3 +183,24 @@ void TestSMSSynthesis::test_basic() { void TestSMSSynthesis::test_changing_frame_size() { ::test_changing_frame_size(&_pd, &_pt, &_synth, &_sf); } + + +// --------------------------------------------------------------------------- +// TestSndObjSynthesis +// --------------------------------------------------------------------------- +void TestSndObjSynthesis::setUp() { + _sf = SndfileHandle(TEST_AUDIO_FILE); + + if(_sf.error() > 0) { + throw Exception(std::string("Could not open audio file: ") + + std::string(TEST_AUDIO_FILE)); + } +} + +void TestSndObjSynthesis::test_basic() { + ::test_basic(&_pd, &_pt, &_synth, &_sf); +} + +void TestSndObjSynthesis::test_changing_frame_size() { + ::test_changing_frame_size(&_pd, &_pt, &_synth, &_sf); +} -- cgit v1.2.3