public void CorrectLargeToString()
        {
            MezzorellaSticks m = new MezzorellaSticks();

            m.MakeLarge();
            Assert.Equal("Large Mezzorella Sticks", m.ToString());
        }
        public void CorrectLargeDescription()
        {
            MezzorellaSticks m = new MezzorellaSticks();

            m.MakeLarge();
            Assert.Equal("Large Mezzorella Sticks", m.Description);
        }