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

#include "VecTester.h"

int main() {
	VecTester vt;
	vt.runTests();
}

