aboutsummaryrefslogtreecommitdiffstats
path: root/test/matrixtest.cpp
blob: 4150641f60611a8fd2b35153c50be04c9f4bb1ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * created 22-06-17 by Yann Herklotz
 *
 * Tests the math class using different tests to see if matrix operations work 
 * correctly.
 *
 */

#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;
}