summaryrefslogtreecommitdiff
path: root/tests/test_common.h
blob: 59bab11f999496eb6e899b2affa9de8fc39702a3 (plain)
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