Exemplo n.º 1
0
        public void TestSortResult()
        {
            Insertion = new InsertionSort(ListToSort);
            Insertion.SortList();

            Assert.IsTrue(CompareList.SequenceEqual(Insertion.SortedList));
        }