/**** * * This is a test program for IntLists, as defined in intlist.{h.C}, q.q.v. * The module and unit test plan for IntListTest is analogous to the plan * defined in strlist-test.{h}. See that file for documentation. * * CSC 542 NOTE: Due to disk crashes at the beginning of the quarter, this file * is not as complete as it should be. Use the strlist-test.{h,C} files as the * proper example of test file design and implementation. * */ #ifndef intlisttestIncluded #define intlisttestIncluded #include "intlist.h" class IntListTest { friend class Intlist; public: void DoIt(); void DoItOnce(); void DoSort(); void Dump(IntList* il); }; #endif