From 0d009a4e980e40dc8a9c9b5e3d25c3fafb363e95 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 7 Jan 2010 21:27:39 +0000 Subject: Move unit testing and coverage framework into autowaf. Make raul tests return 0 on success, 1 on failure. Test coverage for Raul. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2368 a436a847-0d15-0410-975c-d299462d15a1 --- tests/quantize_test.cpp | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 tests/quantize_test.cpp (limited to 'tests/quantize_test.cpp') diff --git a/tests/quantize_test.cpp b/tests/quantize_test.cpp deleted file mode 100644 index cc10505..0000000 --- a/tests/quantize_test.cpp +++ /dev/null @@ -1,31 +0,0 @@ -#include "raul/Quantizer.hpp" -#include - -using namespace std; -using namespace Raul; - - -int -main() -{ - double in = 0; - - cout << "Quantization: "; - cin >> in; - cout << endl; - - TimeStamp q(TimeUnit(TimeUnit::BEATS, 19200), in); - - while (true) { - cout << "Beats: "; - cin >> in; - - TimeStamp beats(TimeUnit(TimeUnit::BEATS, 19200), in); - - cout << "Quantized: "; - cout << Quantizer::quantize(q, beats) << endl << endl; - } - - return 0; -} - -- cgit v1.2.1