We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44b90c9 commit d58ccf3Copy full SHA for d58ccf3
MainProgram/Program.cs
@@ -12,8 +12,9 @@ public class Program
12
{
13
public static void Main(string[] args)
14
15
- // OpenAddressingHashTableTest tests
16
- OpenAddressingHashTableTest.DoTest();
+ DLinkedListTest.DoTest();
+ // SortedDictionaryTests tests
17
+ //SortedDictionaryTests.DoTest();
18
}
19
20
UnitTest/DataStructuresTests/DLinkedListTest.cs
@@ -66,6 +66,7 @@ public static void DoTest()
66
/****************************************************************************************/
67
68
var stringsIterators = listOfStrings.GetEnumerator();
69
+ stringsIterators.MoveNext();
70
Assert.True(stringsIterators.Current == listOfStrings[0], "Wrong enumeration.");
71
if (stringsIterators.MoveNext() == true)
72
0 commit comments