public void CheckingForTypos(string firstName, string expected)
        {
            var actual = warmups.CheckingForTypos(firstName);

            Assert.AreEqual(expected, actual);
        }