Пример #1
0
        public void ViewBagAction()
        {
            DemoController controller = new DemoController();

            ViewResult result = controller.ViewBagAction() as ViewResult;

            Assert.AreEqual("Adding to the ViewBag", result.ViewBag.TestViewBagProperty);
            Assert.AreEqual(true, result.ViewBag.TestBoolProperty);
        }