public void Multiply_100_8_Expects800()
        {
            //Act
            var result = codePage.Basic().push_1().push_0().push_0().
                         Multiply().
                         push_8().
                         Equals().Result;

            //Assert
            Assert.AreEqual("800", result);
            // To generate code for this test, select "Generate Code for Coded UI Test" from the shortcut menu and select one of the menu items.
        }