public IAutoActionSyntax <TResult> WithArguments(params Matcher[] argumentMatchers)
        {
            _builder.With(argumentMatchers);

            return(this);
        }
Example #2
0
 public IActionSyntax To(Matcher valueMatcher)
 {
     return(_builder.With(new ArgumentsMatcher(valueMatcher)));
 }
 public IActionSyntax With(params object[] expectedArguments)
 {
     _builder.With(expectedArguments);
     return(this);
 }