Esempio n. 1
0
 public void EnemySpawnTest()
 {
     //enemy initial location X= 25 and Y = 20
     //Method spawn new enemy, checking their location spawned
     Escapade.SpawnMoreEnemy();
     Assert.AreEqual(25, Escapade.SpawnMoreEnemy().Location.X);
     Assert.AreEqual(20, Escapade.SpawnMoreEnemy().Location.Y);
 }