public ConfigSourceSteps(IObjectContainer container, ConfigSourceContext context, MoqContext moq, ErrorContext errors, ResourceContext resources)
		{
			_container = container;
			_context = context;
			_moq = moq;
			_errors = errors;
			_resources = resources;
		}
		public LoggingInterceptorSteps(LoggingContext logging, InterceptionContext interception, ErrorContext errors)
		{
			_logging = logging;
			_interception = interception;
			_errors = errors;
		}
Пример #3
0
		public ErrorSteps(ErrorContext context)
		{
			_context = context;
		}
		public ObjectCollectionSteps(CollectionContext context, ErrorContext errorContext)
		{
			_context = context;
			_errorContext = errorContext;
		}
Пример #5
0
		public TrySteps(ExceptionHandlingContext context, ErrorContext errorContext)
		{
			_context = context;
			_errorContext = errorContext;
		}