Beispiel #1
0
        public void ShouldSetAndGetCoordinates()
        {
            // Arrange
            Destroyable destroyable = this.CreateDestroyable();
            Coordinates xy          = CreateNewCoordinates();

            // Act
            destroyable.SetCords(xy);

            // Assert
            Assert.AreEqual(destroyable.GetCords(), xy);
        }