public void TestWhenTeamWithSlotRed() { Assert.AreEqual(SlotConstants.TeamWithSlot(6), Team.Red); Assert.AreEqual(SlotConstants.TeamWithSlot(11), Team.Red); }
public void GivesTeamWithSlotTooLargeSlot() { SlotConstants.TeamWithSlot(-1); }
public void TestWhenTeamWithSlotBlue() { Assert.AreEqual(SlotConstants.TeamWithSlot(0), Team.Blue); Assert.AreEqual(SlotConstants.TeamWithSlot(5), Team.Blue); }
public void GivesTeamWithSlotTooSmallSlot() { SlotConstants.TeamWithSlot(-1); }