/**************************************************** * Class: ArrayDriver * Author: Douglas Wilhelm Harder * * Copyright (c) 2006 by Douglas Wilhelm Harder. All rights reserved. ****************************************************/ #include "ArrayTester.h" int main() { ArrayTester tester; std::cout << "Starting Test Run" << endl; tester.run(); std::cout << "Finishing Test Run" << endl; ece250::allocation_table.summary(); return 0; }