Exemplo n.º 1
0
        public void SelectionSort()
        {
            var chars = new char[] { 'd', 'e', 'f', 'r', 'o', 'b' };
            var sort  = new SelectionSort <char>();

            sort.Go(chars);
            Assert.IsTrue(sort.IsSorted(chars));
        }