public static IMatcher SetTestMatcher(this ITestingContext context) { var matcher = context.GetMatcher(); context.Storage.Set(matcher, "matcher"); return(matcher); }
public TaxGiven(TestingContext context) { this.context = context; }
public EmployeeWhen(TestingContext context) { this.context = context; }
public InsuranceThen(TestingContext context) { this.context = context; }
public PerfTest(TestingContext context) { this.context = context; }
public CompanyThen(TestingContext context) { this.context = context; }
public InsuranceGiven(TestingContext context) { this.context = context; }
public WorkProjectWhen(TestingContext context) { this.context = context; }
public CompanyPropertyWhen(TestingContext context) { this.context = context; }
public ThenException(TestingContext context) { this.context = context; }
public LoggerMustProduceInfo(TestingContext context) { this.context = context; }
public CompanyPropertyGiven(TestingContext context) { this.context = context; }
public DepartmentGiven(TestingContext context) { this.context = context; }
public CompanyWhen(TestingContext context) { this.context = context; }
public AssignmentThen(TestingContext context) { this.context = context; }
public DepartmentWhen(TestingContext context) { this.context = context; }
public static IMatcher TestMatcher(this ITestingContext context) { return(context.Storage.Get <IMatcher>("matcher")); }