From 3880902d9b77e757bda3a1cabef9fd260fbb633c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E6=99=93=E8=88=AA?= <1210603696@qq.com> Date: Sun, 11 Jan 2015 13:30:40 +0800 Subject: [PATCH] add --- TinySTL/Test/ListTest.cpp | 7 +++++++ TinySTL/Test/ListTest.h | 23 +++++++++++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 TinySTL/Test/ListTest.cpp create mode 100644 TinySTL/Test/ListTest.h 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