public void CorrectBetTest()
        {
            var bot = new AllInOneWinBot(900);

            Assert.IsNotNull(bot.MakeBets());

            Assert.Pass();
        }
        public void StopPlayingTest()
        {
            var bot = new AllInOneWinBot(900);

            var attempt = 0;

            while (bot.MakeBets().Count != 0 && attempt < maxAttempts)
            {
                attempt++;
            }

            if (bot.MakeBets().Count == 0 && attempt == 1)
            {
                Assert.Pass();
            }

            Assert.Fail();
        }