예제 #1
0
int main() {
	int score = 0;

	printf("\nIniciando o teste do módulo list\n\n");

	score += testListDestroy();

	score += testListFreeKeys();

	score += testListaVazia();

	score += testAddCabeca();

	score += testAddVarios();

	score += testRemoveCabeca();

	score += testRemoveCauda();

	score += testRemoveMeio();

	score += testGetKeys();

	printf("\nResultados do teste do modulo list: %d em 9\n",score);

	return score;
}
예제 #2
0
파일: test_hashset.c 프로젝트: atdt/hstr
int main(int argc, char *argv[])
{
	testGetKeys();
}