File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
UnitTest/DataStructuresTests Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -12,8 +12,9 @@ public class Program
12
12
{
13
13
public static void Main ( string [ ] args )
14
14
{
15
- // OpenAddressingHashTableTest tests
16
- OpenAddressingHashTableTest . DoTest ( ) ;
15
+ DLinkedListTest . DoTest ( ) ;
16
+ // SortedDictionaryTests tests
17
+ //SortedDictionaryTests.DoTest();
17
18
}
18
19
}
19
20
}
Original file line number Diff line number Diff line change @@ -66,6 +66,7 @@ public static void DoTest()
66
66
/****************************************************************************************/
67
67
68
68
var stringsIterators = listOfStrings . GetEnumerator ( ) ;
69
+ stringsIterators . MoveNext ( ) ;
69
70
Assert . True ( stringsIterators . Current == listOfStrings [ 0 ] , "Wrong enumeration." ) ;
70
71
if ( stringsIterators . MoveNext ( ) == true )
71
72
{
You can’t perform that action at this time.
0 commit comments