This commit is contained in:
邹晓航
2015-02-11 11:02:21 +08:00
parent a48c17b0bf
commit a98ecca3db
4 changed files with 87 additions and 2 deletions

View File

@@ -90,6 +90,7 @@
<ClCompile Include="Test\BitmapTest.cpp" />
<ClCompile Include="Test\CircularBufferTest.cpp" />
<ClCompile Include="Test\DequeTest.cpp" />
<ClCompile Include="Test\GraphTest.cpp" />
<ClCompile Include="Test\ListTest.cpp" />
<ClCompile Include="Test\PairTest.cpp" />
<ClCompile Include="Test\PriorityQueueTest.cpp" />
@@ -115,10 +116,12 @@
<ClInclude Include="Detail\Bitmap.impl.h" />
<ClInclude Include="Detail\CircularBuffer.impl.h" />
<ClInclude Include="Detail\Deque.impl.h" />
<ClInclude Include="Detail\Graph.impl.h" />
<ClInclude Include="Detail\List.impl.h" />
<ClInclude Include="Detail\Unordered_set.impl.h" />
<ClInclude Include="Detail\Vector.impl.h" />
<ClInclude Include="Functional.h" />
<ClInclude Include="Graph.h" />
<ClInclude Include="Iterator.h" />
<ClInclude Include="List.h" />
<ClInclude Include="Profiler\Profiler.h" />
@@ -133,6 +136,7 @@
<ClInclude Include="Test\BitmapTest.h" />
<ClInclude Include="Test\CircularBufferTest.h" />
<ClInclude Include="Test\DequeTest.h" />
<ClInclude Include="Test\GraphTest.h" />
<ClInclude Include="Test\ListTest.h" />
<ClInclude Include="Test\PairTest.h" />
<ClInclude Include="Test\PriorityQueueTest.h" />
@@ -153,6 +157,10 @@
<None Include="..\README.md" />
</ItemGroup>
<ItemGroup>
<Image Include="ScreenShots\graph1.png" />
<Image Include="ScreenShots\graph2.png" />
<Image Include="ScreenShots\graph_bfs.png" />
<Image Include="ScreenShots\graph_dfs.png" />
<Image Include="ScreenShots\suffix_array.png" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />

View File

@@ -84,6 +84,9 @@
<ClCompile Include="Test\Unordered_setTest.cpp">
<Filter>Test</Filter>
</ClCompile>
<ClCompile Include="Test\GraphTest.cpp">
<Filter>Test</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="TypeTraits.h">
@@ -227,6 +230,15 @@
<ClInclude Include="Test\Unordered_setTest.h">
<Filter>Test</Filter>
</ClInclude>
<ClInclude Include="Graph.h">
<Filter>头文件</Filter>
</ClInclude>
<ClInclude Include="Detail\Graph.impl.h">
<Filter>Detail</Filter>
</ClInclude>
<ClInclude Include="Test\GraphTest.h">
<Filter>Test</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<None Include="..\README.md" />
@@ -235,5 +247,17 @@
<Image Include="ScreenShots\suffix_array.png">
<Filter>ScreenShots</Filter>
</Image>
<Image Include="ScreenShots\graph_bfs.png">
<Filter>ScreenShots</Filter>
</Image>
<Image Include="ScreenShots\graph_dfs.png">
<Filter>ScreenShots</Filter>
</Image>
<Image Include="ScreenShots\graph1.png">
<Filter>ScreenShots</Filter>
</Image>
<Image Include="ScreenShots\graph2.png">
<Filter>ScreenShots</Filter>
</Image>
</ItemGroup>
</Project>

View File

@@ -9,6 +9,7 @@
#include "Test\BinarySearchTreeTest.h"
#include "Test\CircularBufferTest.h"
#include "Test\DequeTest.h"
#include "Test\GraphTest.h"
#include "Test\ListTest.h"
#include "Test\PairTest.h"
#include "Test\PriorityQueueTest.h"
@@ -19,6 +20,8 @@
#include "Test\Unordered_setTest.h"
#include "Test\VectorTest.h"
#include "Graph.h"
using namespace TinySTL::Profiler;
int main(){
@@ -29,6 +32,7 @@ int main(){
TinySTL::CircularBufferTest::testAllCases();
TinySTL::DequeTest::testAllCases();
TinySTL::ListTest::testAllCases();
TinySTL::GraphTest::testAllCases();
TinySTL::PairTest::testAllCases();
TinySTL::PriorityQueueTest::testAllCases();
TinySTL::QueueTest::testAllCases();