public void Returns10() { //Arrange HitPoints hitPoints = new HitPoints(); //Act int expected = 10; int actual = hitPoints.D10HitDice(); //Assert Assert.AreEqual(expected, actual); }