aboutsummaryrefslogtreecommitdiffstats
path: root/test/matrixtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/matrixtest.cpp')
-rw-r--r--test/matrixtest.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/matrixtest.cpp b/test/matrixtest.cpp
index 16548164..4150641f 100644
--- a/test/matrixtest.cpp
+++ b/test/matrixtest.cpp
@@ -8,7 +8,16 @@
#include "Math/math.hpp"
+#include "testbench.hpp"
+
int main()
{
+ TestBench tb;
+ tb.startTest("Hello");
+ tb.endTest(true);
+ tb.startTest("Bye");
+ tb.endTest(true);
+
+ tb.printResults();
return 0;
}