public void TestCheckMoreThanThreeGivenName()
        {
            string path = Path.Combine(Environment.CurrentDirectory, "unsorted-names-list.txt");
            Sorter s    = new NameSorter(new FileOperation(path));

            s.SortFullNames();
            Assert.AreEqual(true, s.Success);
        }
        static void SortNames(string path)
        {
            Sorter s = new NameSorter(new FileOperation(path));

            s.SortFullNames();
        }