summaryrefslogtreecommitdiffstats
path: root/tests/time_test.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-01-07 21:27:39 +0000
committerDavid Robillard <d@drobilla.net>2010-01-07 21:27:39 +0000
commit0d009a4e980e40dc8a9c9b5e3d25c3fafb363e95 (patch)
tree4d41dea009f1647519af8df10f114cd7a6165792 /tests/time_test.cpp
parent61ac4a41f0aea63f45d7b27be3ef2e0554e93ece (diff)
downloadraul-0d009a4e980e40dc8a9c9b5e3d25c3fafb363e95.tar.gz
raul-0d009a4e980e40dc8a9c9b5e3d25c3fafb363e95.tar.bz2
raul-0d009a4e980e40dc8a9c9b5e3d25c3fafb363e95.zip
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
Diffstat (limited to 'tests/time_test.cpp')
-rw-r--r--tests/time_test.cpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/time_test.cpp b/tests/time_test.cpp
deleted file mode 100644
index 2b53207..0000000
--- a/tests/time_test.cpp
+++ /dev/null
@@ -1,32 +0,0 @@
-#include "raul/TimeStamp.hpp"
-#include "raul/TimeSlice.hpp"
-#include <iostream>
-
-using namespace std;
-using namespace Raul;
-
-
-int
-main()
-{
- TimeUnit unit(TimeUnit::BEATS, 19200);
- TimeSlice ts(48000, 19200, 120.0);
-
- double in_double;
- cout << "Beats: ";
- cin >> in_double;
-
- TimeStamp t(unit, (uint32_t)in_double,
- (uint32_t)((in_double - (uint32_t)in_double) * unit.ppt()));
-
- cout << "\tSeconds: ";
- cout << ts.beats_to_seconds(t);
- cout << endl;
-
- cout << "\tTicks: ";
- cout << ts.beats_to_ticks(t);
- cout << endl;
-
- return 0;
-}
-