コード例 #1
0
ファイル: main.cpp プロジェクト: SiegerJman/05_Hashing_Lab
//A simple main function which creates a list, and tests it.
int main(){
  testCtor();
  testBasicMethods();
  testGrow();

  return 0;
}
コード例 #2
0
ファイル: main.cpp プロジェクト: GrasysER/04_Linked_List_Lab
//A simple main function which creates a list, and tests it.
int main(){
	testCtor();
	testBasicMethods();
	testExceptions();
	// testSplice();

	return 0;
}