Skip to content

Commit

Permalink
Separeted tests from singly/doubly linked lists.
Browse files Browse the repository at this point in the history
Signed-off-by: unknown <saq10002@iteb-219.ad.engr.uconn.edu>
  • Loading branch information
saq10002 committed Oct 10, 2014
1 parent 4d213c7 commit 99e34ed
Show file tree
Hide file tree
Showing 9 changed files with 1,313 additions and 1,259 deletions.
2 changes: 2 additions & 0 deletions YASI_12/YASI_12.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
<ClInclude Include="ds.comparable.h" />
<ClInclude Include="ds.dictionary.h" />
<ClInclude Include="ds.doublylinkedlist.h" />
<ClInclude Include="ds.doublylinkedlist.test.h" />
<ClInclude Include="ds.graph.h" />
<ClInclude Include="ds.hashtablebase.h" />
<ClInclude Include="ds.HopScotchHashTable.h" />
Expand All @@ -100,6 +101,7 @@
<ClInclude Include="ds.priorityqueue.h" />
<ClInclude Include="ds.SeparateChainingHashTable.h" />
<ClInclude Include="ds.singlylinkedlist.h" />
<ClInclude Include="ds.singlylinkedlist.test.h" />
<ClInclude Include="ds.tree.h" />
<ClInclude Include="Sorter.h" />
<ClInclude Include="stl.iterator.h">
Expand Down
6 changes: 6 additions & 0 deletions YASI_12/YASI_12.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -149,5 +149,11 @@
<ClInclude Include="utils.test.h">
<Filter>Header Files\Common</Filter>
</ClInclude>
<ClInclude Include="ds.singlylinkedlist.test.h">
<Filter>Header Files\Data Structures\List</Filter>
</ClInclude>
<ClInclude Include="ds.doublylinkedlist.test.h">
<Filter>Header Files</Filter>
</ClInclude>
</ItemGroup>
</Project>
743 changes: 6 additions & 737 deletions YASI_12/ds.doublylinkedlist.h

Large diffs are not rendered by default.

750 changes: 750 additions & 0 deletions YASI_12/ds.doublylinkedlist.test.h

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions YASI_12/ds.iterator.test.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#pragma once

#if YASI_TEST_THIS_MODULE != 1
#define YASI_TEST_THIS_MODULE 1
#endif

#include "ds.iterator.h"
using namespace std;

Expand Down
Loading

0 comments on commit 99e34ed

Please sign in to comment.