public void EspressoFeatureShouldReturnTrue()
        {
            var espressoFeature = new EspressoFeature();
            var result          = espressoFeature.Execute();

            Assert.IsTrue(result);
        }
Exemplo n.º 2
0
        public ActionResult MakeEspresso()
        {
            IEspressoFeature espressoFeature = new EspressoFeature();
            var isSuccess = espressoFeature.Execute();

            return(RedirectToAction("Ready", new { isSuccess }));
        }