Example #1
0
        public void RollD6()
        {
            int minRoll = 1;
            int maxRoll = 6;
            int actualRoll;

            actualRoll = DiceRoll.D6Roll();

            Assert.IsTrue(minRoll <= actualRoll, "The actualCount was not greater than " + minRoll);
            Assert.IsTrue(actualRoll <= maxRoll, "The actualCount was not lower than " + maxRoll);
        }