public void ProductOutputMessageTest()
        {
            Candy  candy    = new Candy("Candy", 3M, "A2", 3);
            string expected = "Munch Munch, Yum!";
            string result   = candy.ProductOutputMessage();

            Assert.AreEqual(expected, result);
        }