Ejemplo n.º 1
0
        public void WhenScentIsAddedCoordinateIsSetWithScent()
        {
            var surface = new Surface(new Coordinates(5, 5));

            surface.AddScent(new Coordinates(1, 1));
            Assert.True(surface.PositionHasScent(new Coordinates(1, 1)));
        }