示例#1
0
        public void InputList_FileFound_ReturnList()
        {
            FileInputClass input  = new FileInputClass();
            var            result = input.InputList("unsorted-names-list.txt");

            Assert.IsInstanceOfType(result, typeof(List <string>));
        }
示例#2
0
 public void InputList_FileNotFound_ExceptionThrown()
 {
     FileInputClass input  = new FileInputClass();
     var            result = input.InputList("unknown.txt");
 }