Example #1
0
        public void RollD10_0()
        {
            int minRoll = 0;
            int maxRoll = 9;
            int actualRoll;

            actualRoll = DiceRoll.D10Roll0();

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