示例#1
0
int main(int argc, char* argv[])
{
	TestDatatypeSizes();

	TestMasks();
	
	TestString();

	TestStack();

	TestQueue();

	TestList();

	TestDictionary();
	
 	return 0;
}
示例#2
0
int main(void)
{
#if 1
	int errors=0;
	errors += testBloomFilter();
    testStringCollection();
	errors += testVector();
	testList();
	testBinarySearchTree();
	testStringCollection();
	TestDictionary();
	TestBitstring();
	testScapegoatTree();
	testStreamBuffers();
	/*RedBlackTree * rb = newRedBlackTree(20,5);*/
	/*rb->VTable->Finalize(rb);*/
	return errors;
#else

#endif
}