/**************************************************** * Class: SingleListDoubleDriver * Author: Douglas Wilhelm Harder * Copyright (c) 2006-8 by Douglas Wilhelm Harder. All rights reserved. * * DO NOT EDIT THIS FILE * * Create an instance of the SingleListTester class * and call the member function run(). * * The member function run() will interpret the * input appropriately and exit when the interpreter * receives either the command 'exit' or and * end-of-file. ****************************************************/ #include #include "SingleListTester.h" int main() { SingleListTester tester; std::cout << "Starting Test Run" << std::endl; tester.run(); std::cout << "Finishing Test Run" << std::endl; return 0; }