public void VegeterianSalad_CheckedChangedTest()
        {
            // arrange
            Fast_Food_Restaurant_System.Form1 tmp = new Fast_Food_Restaurant_System.Form1();

            //act
            tmp.VegeterianSalad.Checked = true;
            tmp.VegeterianSalad_CheckedChanged(null, null);

            //assert
            Assert.AreEqual(true, tmp.txtVegeterianSalad.Enabled);
        }
        public void Fries_CheckedChangedTest()
        {
            // arrange
            Fast_Food_Restaurant_System.Form1 tmp = new Fast_Food_Restaurant_System.Form1();

            //act
            tmp.Fries.Checked = true;
            tmp.Fries_CheckedChanged(null, null);

            //assert
            Assert.AreEqual(true, tmp.txtFries.Enabled);
        }
        public void ChocolateMuffin_CheckedChangedTest()
        {
            // arrange
            Fast_Food_Restaurant_System.Form1 tmp = new Fast_Food_Restaurant_System.Form1();

            //act
            tmp.ChocolateMuffin.Checked = true;
            tmp.ChocolateMuffin_CheckedChanged(null, null);

            //assert
            Assert.AreEqual(true, tmp.txtChocolateMuffin.Enabled);
        }
        public void PineappleCake_CheckedChangedTest()
        {
            // arrange
            Fast_Food_Restaurant_System.Form1 tmp = new Fast_Food_Restaurant_System.Form1();

            //act
            tmp.PineappleCake.Checked = true;
            tmp.PineappleCake_CheckedChanged(null, null);

            //assert
            Assert.AreEqual(true, tmp.txtPineappleCake.Enabled);
        }
        public void BaconBurger_CheckedChangedTest()
        {
            //arrange
            Fast_Food_Restaurant_System.Form1 tmp = new Fast_Food_Restaurant_System.Form1();

            //act
            tmp.CheeseBurger.Checked = true;
            tmp.CheeseBurger_CheckedChanged(null, null);

            //assert
            Assert.AreEqual(true, tmp.txtHumBurger.Enabled);
        }
        public void BottleWater_CheckedChangedTest()
        {
            // arrange
            Fast_Food_Restaurant_System.Form1 tmp = new Fast_Food_Restaurant_System.Form1();

            //act
            tmp.BottleWater.Checked = true;
            tmp.BottleWater_CheckedChanged(null, null);

            //assert
            Assert.AreEqual(true, tmp.txtBottlewater.Enabled);
        }
        public void WingsFestival_CheckedChangedTest()
        {
            // arrange
            Fast_Food_Restaurant_System.Form1 tmp = new Fast_Food_Restaurant_System.Form1();

            //act
            tmp.WingsFestival.Checked = true;
            tmp.WingsFestival_CheckedChanged(null, null);

            //assert
            Assert.AreEqual(true, tmp.txtWingsFestival.Enabled);
        }