public void TestGame() { Dwarf p2 = new Dwarf(); Player j2 = new Player(p2, 15, "Mathieu"); Elf p1 = new Elf(); Player j1 = new Player(p1, 6, "Delphine"); Map map = new MapSmall(); Game game = new Game(20, j1, j2, map); }
public void TestGenerationMapSmall() { Map map = new MapSmall(); Assert.IsTrue(map.getSize() == 10); }