diff --git a/TinySTL/Test/ListTest.cpp b/TinySTL/Test/ListTest.cpp new file mode 100644 index 0000000..3bca18c --- /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 0000000..f7a200c --- /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