public void ValidateSelectionFromArray(string userEntry, bool expected)
        {
            var actual = warmups.ValidateSelectionFromArray(userEntry, productSelections);

            Assert.AreEqual(expected, actual);
        }