Ejemplo n.º 1
0
int testAll() {
  Debug::init();
  testStringConvertion();
  testTimeQueue();
  testRectangleIterator();
  testValueCheck();
  testSplit();
  testShortestPath();
  testAStar();
  testShortestPath2();
  testShortestPathReverse();
  testRange();
  testRange2();
  testContains();
  testPredicates();
  testOptional();
  testMustInitialize();
  testVec2();
  testConcat();
  testTable();
  testVec2();
  testRectangle();
  testProjection();
  testRandomExit();
  testCombine();
  testSectors1();
  testSectors2();
  testSectors3();
  testReverse();
  testReverse2();
  testReverse3();
  Debug() << "-----===== OK =====-----";
  return 0;
}
Ejemplo n.º 2
0
int main (int argc, char *argv[]){

	testAdd();
	testDelete();
	testAppend();
	testReverse();
	testZip();

	printf("All tests passed! You are awesome!\n");

	return EXIT_SUCCESS;
}
Ejemplo n.º 3
0
Archivo: 2.1.c Proyecto: kun-g/sketch
void test() {
  printf("Test Reverse List\n"); testReverse();
  printf("Test SubReverse List\n"); testSubReverse();
}