1 2 3 4 5 6 7 8 9 10 11 12 13 14 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