示例#1
0
        public void ShouldParseRecordsFromTxtFile()
        {
            string path = @"..//..//adhed//CityTrainingOne//Files//cities.txt";

            TxtParser <City> parser = new TxtCitiesParser();
            List <City>      list   = parser.GetAllResults(path);

            Assert.IsNotNull(list);
        }
示例#2
0
        public void ShouldParseRecordsFromTxtFile()
        {
            string path = @"..//..//adhed//CityTrainingOne//Files//cities.txt";

            TxtParser<City> parser = new TxtCitiesParser();
            List<City> list = parser.GetAllResults(path);

            Assert.IsNotNull(list);
        }