public void ShouldSetAndGetCoordinates() { // Arrange Destroyable destroyable = this.CreateDestroyable(); Coordinates xy = CreateNewCoordinates(); // Act destroyable.SetCords(xy); // Assert Assert.AreEqual(destroyable.GetCords(), xy); }