Example #1
0
 public void PokeDex_Load_SaveAsCSV_LoadCSV_ValidCsv()
 {
     // Load the data2.csv and SaveAsCSV() it to pokemons.csv and
     // LoadCsv() output and validate that there’s 663 entries
     pokedex.Load(inputPath);
     pokedex.SaveAsCSV("pokemons.csv");
     pokedex.LoadCSV("pokemons.csv");
     Assert.AreEqual(663, pokedex.Count);
 }