public void Test_Performance_CustomSortFor()
        {
            ISort sortFor = new SortFor();

            sortFor.CustonSort(ArrMock.MockArray);
            Assert.AreEqual(1, 1);
        }
        public void Test_Sortfor2()
        {
            ISort         sort = new SortFor();
            IPrintConsole pc   = new PrintConsole();

            using (StringWriter sw = new StringWriter())
            {
                Console.SetOut(sw);
                pc.Print(sort.CustonSort(arr02));
                string Retorno = sw.ToString().Replace("\r\n", " ").Trim();;
                Assert.AreEqual <string>(expected02, Retorno);
            }
        }