diff --git a/TinySTL/Test/ListTest.cpp b/TinySTL/Test/ListTest.cpp new file mode 100644 index 0000000000000000000000000000000000000000..3bca18c952b528f39909faf1dd26d4b591e2f75c --- /dev/null +++ b/TinySTL/Test/ListTest.cpp @@ -0,0 +1,7 @@ +#include "ListTest.h" + +namespace TinySTL{ + namespace ListTest{ + + } +} \ No newline at end of file diff --git a/TinySTL/Test/ListTest.h b/TinySTL/Test/ListTest.h new file mode 100644 index 0000000000000000000000000000000000000000..f7a200cc9d0b600c68c13c0006a2277f086b0c29 --- /dev/null +++ b/TinySTL/Test/ListTest.h @@ -0,0 +1,23 @@ +#ifndef _LIST_TEST_H_ +#define _LIST_TEST_H_ + +#include "TestUtil.h" + +#include "../List.h" +#include + +#include +#include + +namespace TinySTL{ + namespace ListTest{ + template + using stdL = std::list < T > ; + template + using tsL = TinySTL::list < T > ; + + void testAllCases(); + } +} + +#endif \ No newline at end of file