Exemplo n.º 1
0
        public void ConMod2Level2HitDiceof10ReturnsBetween15And24()
        {
            //Arrange
            HitPoints hitPoints = new HitPoints();
            //Act
            int actual = hitPoints.GetTotalHitpointsD10(2, 2);

            //Assert
            Assert.IsTrue(actual >= 15 && actual <= 24);
        }