/* tester.cpp drives the testing of our Vec template and Matrix class.
 * Student:
 * Date:
 * Begun by: Joel C. Adams, for CS 112 at Calvin College.
 */

#include "VecTester.h"
// #include "MatrixTester.h"

int main() {
	VecTester vt;
	vt.runTests();
//	MatrixTester mt;
//	mt.runTests();
}

