Example #1
0
        public void New_ReturnsCorrectView_True()
        {
            //Arrange
            BagItemsController controller = new BagItemsController();

            //Act
            ActionResult newView = controller.New();

            //Assert
            Assert.IsInstanceOfType(newView, typeof(ViewResult));
        }