public void TestPrintingOutputFile() { string input = "unsorted-names-list.txt"; string output = "Test-ouput.txt"; ISorter GlobalXNameSorter = new NameSorter(input, output); GlobalXNameSorter.Sort(); GlobalXNameSorter.PrintOutputList(); }