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