Example #1
0
 public void PokeDex_SaveWithValuesCanLoad_TrueAndNotEmpty()
 {
     // save returns true, load returns true, and pokedex is not empty.
     Assert.IsTrue(pokedex.Save(outputPath));
     Assert.IsTrue(pokedex.Load(inputPath));
     Assert.IsNotEmpty(pokedex);
 }