//A simple main function which creates a list, and tests it. int main(){ testCtor(); testBasicMethods(); testExceptions(); // testSplice(); return 0; }
int main() { testConstructorsAndAssignment(); testOperators(); testAccess(); testPushPop(); testIteration(); testExceptions(); testIterationConstness(); return 0; }