This commit is contained in:
邹晓航
2015-01-11 13:30:40 +08:00
parent cc705c7316
commit 3880902d9b
2 changed files with 30 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#include "ListTest.h"
namespace TinySTL{
namespace ListTest{
}
}

23
TinySTL/Test/ListTest.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef _LIST_TEST_H_
#define _LIST_TEST_H_
#include "TestUtil.h"
#include "../List.h"
#include <list>
#include <cassert>
#include <string>
namespace TinySTL{
namespace ListTest{
template<class T>
using stdL = std::list < T > ;
template<class T>
using tsL = TinySTL::list < T > ;
void testAllCases();
}
}
#endif