50 lines
735 B
C
50 lines
735 B
C
/**
|
|
* Ignore this file
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <stdio.h>
|
|
|
|
void test_hm1(void);
|
|
|
|
void test_q1(void);
|
|
|
|
void test_str1(void);
|
|
void test_str2(void);
|
|
void test_str3(void);
|
|
|
|
void test_v1(void);
|
|
|
|
void test_s1(void);
|
|
|
|
int main(void) {
|
|
puts("==== [Running Hashmap tests] ====");
|
|
test_hm1();
|
|
puts("OK!");
|
|
puts("");
|
|
|
|
puts("==== [Running Queue tests] ====");
|
|
test_q1();
|
|
puts("OK!");
|
|
puts("");
|
|
|
|
puts("==== [Running String tests] ====");
|
|
test_str1();
|
|
test_str2();
|
|
test_str3();
|
|
puts("OK!");
|
|
puts("");
|
|
|
|
puts("==== [Running Vector tests] ====");
|
|
test_v1();
|
|
puts("OK!");
|
|
puts("");
|
|
|
|
puts("==== [Running Stack tests] ====");
|
|
test_s1();
|
|
puts("OK!");
|
|
puts("");
|
|
|
|
return 0;
|
|
}
|