Exemplo n.º 1
0
        public void Setup()
        {
            var context = new Context();

            when = new WhenSteps(context);
            then = new ThenSteps(context);
        }
        public void ThenStepsAreReturnedAsAssertingSteps()
        {
            var steps = ThenSteps.ToList();

            Assert.IsTrue(steps.All(s => s.ExecutionOrder == ExecutionOrder.Assertion));
        }