public void Returns6() { //Arrange HitPoints hitPoints = new HitPoints(); //Act int expected = 6; int actual = hitPoints.D6HitDice(); //Assert Assert.AreEqual(expected, actual); }