public void TestPlayerAndBotContentInFilledSlots() { FilledSlots sut = new FilledSlots(new FakeEmptyContentHistory()); Assert.IsTrue(sut.SlotContentIsInCategory(SlotContent.Player)); Assert.IsTrue(sut.SlotContentIsInCategory(SlotContent.Bot)); Assert.IsFalse(sut.SlotContentIsInCategory(SlotContent.Empty)); }
public SlotManager(ISlotContentHistory history) { Bots = new BotSlots(history); All = new AllSlots(history); Filled = new FilledSlots(history); Empty = new EmptySlots(history); Players = new PlayerSlots(history); }