public void WheelofFortune(string secretWord, char letterGuess, int pointValue, int expected)
        {
            var actual = warmups.WheelofFortune(secretWord, letterGuess, pointValue);

            Assert.AreEqual(expected, actual);
        }