示例#1
0
 public JazzManSpec(IRuntimeContext runtimeContext, ISpecExecutor specExecutor, ISpecFinder specFinder, IDescribeBlockToExecutableSpecConverter describeBlockToExecutableSpecConverter)
 {
     _runtimeContext = runtimeContext;
     _specExecutor   = specExecutor;
     _specFinder     = specFinder;
     _describeBlockToExecutableSpecConverter = describeBlockToExecutableSpecConverter;
 }
示例#2
0
 public JazzManSpec()
 {
     _describeBlockToExecutableSpecConverter = new DescribeBlockToExecutableSpecConverter();
     _runtimeContext = new RuntimeContext();
     _specFinder     = new SpecFinder(this, _runtimeContext);
     _specExecutor   = new SpecExecutor(this, _runtimeContext);
 }