public FeatureWithADependentContextSteps(SingleContext context)
 {
     _context = context;
 }
 public FeatureWithMultipleContextsSteps(SingleContext context1, SingleContext context2)
 {
     _context1 = context1;
     _context2 = context2;
 }
Example #3
0
 public FeatureWithASingleContextSteps(SingleContext context)
 {
     _context = context;
     _context.WasCreatedBy = "Feature With A Single Context";
 }
Example #4
0
 public FeatureWithMultipleContextsSteps(SingleContext context1, SingleContext context2)
 {
     _context1 = context1;
     _context2 = context2;
 }
 public FeatureWithASingleContextSteps(SingleContext context)
 {
     _context = context;
     _context.WasCreatedBy = "Feature With A Single Context";
 }
Example #6
0
 public FeatureWithADependentContextSteps(SingleContext context)
 {
     _context = context;
 }