summaryrefslogtreecommitdiff
path: root/tests/test_synthesis.cpp
diff options
context:
space:
mode:
authorJohn Glover <j@johnglover.net>2013-06-21 13:01:34 +0200
committerJohn Glover <j@johnglover.net>2013-06-21 13:01:34 +0200
commit0748af1f211540bced097b8438c29ea58d202739 (patch)
treee7188bc11b2160be318f56cf460e47700f9e2d94 /tests/test_synthesis.cpp
parentacfa96cb1f22aab00a3ec310a93b40f0adf3fe35 (diff)
downloadsimpl-0748af1f211540bced097b8438c29ea58d202739.tar.gz
simpl-0748af1f211540bced097b8438c29ea58d202739.tar.bz2
simpl-0748af1f211540bced097b8438c29ea58d202739.zip
[tests] Add basic SndObjSynthesis tests
Diffstat (limited to 'tests/test_synthesis.cpp')
-rw-r--r--tests/test_synthesis.cpp21
1 files changed, 21 insertions, 0 deletions
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);
+}