Esempio n. 1
0
//A simple main function which creates a list, and tests it.
int main(){
	testCtor();
	testBasicMethods();
	testExceptions();
	// testSplice();

	return 0;
}
Esempio n. 2
0
int main() {

	testConstructorsAndAssignment();
	testOperators();
	testAccess();
	testPushPop();
	testIteration();
    testExceptions();
	testIterationConstness();

	return 0;
}