Beispiel #1
0
 public void GetNextPointToPlace_2_0()
 {
     (int x, int y) = ImageTiles.GetNextPointToPlace(2, 0, 3);
     Assert.AreEqual(new Point(2, 1), new Point(x, y));
 }
Beispiel #2
0
 public void GetNextPointToPlace_1_2()
 {
     (int x, int y) = ImageTiles.GetNextPointToPlace(1, 2, 3);
     Assert.AreEqual(new Point(2, 0), new Point(x, y));
 }