aboutsummaryrefslogtreecommitdiffstats
path: root/test/matrixtest.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-06-22 22:23:16 +0100
committerYann Herklotz <ymherklotz@gmail.com>2017-06-22 22:23:16 +0100
commitb002697e19db546c3f7f70c7385f3106310e4579 (patch)
tree4ef419413c5e093f443ea8cda9489e4e8d0a7a51 /test/matrixtest.cpp
parenta4b4047e48e435253efea0c188b808995a477d8c (diff)
downloadYAGE-b002697e19db546c3f7f70c7385f3106310e4579.tar.gz
YAGE-b002697e19db546c3f7f70c7385f3106310e4579.zip
Adding testbench
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;
}