StoryTeller.AggregateLineExecution.Execute C# (CSharp) Method

Execute() public method

public Execute ( SpecContext context ) : void
context SpecContext
return void
        public void Execute(SpecContext context)
        {
            foreach (var line in _lines)
            {
                line.Execute(context);
            }
        }