StoryTeller.AggregateLineExecution.Execute C# (CSharp) 메소드

Execute() 공개 메소드

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