public void Test_AddBot() { IPokerDatabase database = new PokerDatabase(); IPlayer testBot = new Player("Test Bot"); database.AddBot(testBot); Assert.AreEqual(1, database.BotsCount(), "The bot was not added to the collection."); }
public void Test_PokerDatabaseInitialization() { IPokerDatabase database = new PokerDatabase(); Assert.AreEqual(0, database.BotsCount(), "The initial bot collection is not empty"); }