public void TestGetBoundingBoxForNorthSouthHeading() { var nsCruiser = new BattleshipGameBoard.FleetEntry( new Cruiser(), 3, 4, Facing.Vertical ).GetBoundingBox(); Assertions.AssertThat(nsCruiser.Left).IsEqualTo(3); Assertions.AssertThat(nsCruiser.Top).IsEqualTo(4); Assertions.AssertThat(nsCruiser.Width).IsEqualTo(1); Assertions.AssertThat(nsCruiser.Height).IsEqualTo(3); }
public void TestGetBoundingBoxForEastWestHeading() { var ewBattleShip = new BattleshipGameBoard.FleetEntry( new Battleship(), 3, 4, Facing.Horizontal ).GetBoundingBox(); Assertions.AssertThat(ewBattleShip.Left).IsEqualTo(3); Assertions.AssertThat(ewBattleShip.Top).IsEqualTo(4); Assertions.AssertThat(ewBattleShip.Width).IsEqualTo(4); Assertions.AssertThat(ewBattleShip.Height).IsEqualTo(1); }