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