diff options
Diffstat (limited to 'tests/test_common.h')
-rw-r--r-- | tests/test_common.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/test_common.h b/tests/test_common.h new file mode 100644 index 0000000..59bab11 --- /dev/null +++ b/tests/test_common.h @@ -0,0 +1,15 @@ +#ifndef TEST_COMMON_H +#define TEST_COMMON_H + +#include <iostream> +#include <sndfile.hh> + +namespace simpl +{ + +static const double PRECISION = 0.001; +static const char* TEST_AUDIO_FILE = "../tests/audio/flute.wav"; + +} // end of namespace simpl + +#endif |