test_smallset.h (348B)
1 #ifndef TEST_SMALLSET_H 2 #define TEST_SMALLSET_H 3 4 #include <CUnit/Basic.h> 5 #include "../smallset.h" 6 7 void test_smallset_init(); 8 void test_smallset_insert(); 9 void test_smallset_lookup(); 10 void test_smallset_intersection(); 11 void test_smallset_tonstr(); 12 void test_smallset_getone(); 13 void test_smallset_empty(); 14 void test_smallset_cardinality(); 15 16 #endif