- #include "tests/ArrayTests.h"
- #include "tests/HashMapTests.h"
- #include "tests/ListTests.h"
- #include "tests/BitArrayTests.h"
- #include "tests/StringBufferTests.h"
- int main() {
- ArrayTests::test();
- HashMapTests::test();
- ListTests::test();
- BitArrayTests::test();
- StringBufferTests::test();
- return 0;
- }
|