internal UnorderedCallAssertion(FakeManager fakeManager, ICallMatcher matcher, string callDescription, Repeated repeatConstraint) { this.fakeManager = fakeManager; this.matcher = matcher; this.callDescription = callDescription; this.repeatConstraint = repeatConstraint; }
internal UnorderedCallAssertion(FakeManager fakeManager, ICallMatcher matcher, Action <IOutputWriter> callDescriber, Repeated repeatConstraint) { this.fakeManager = fakeManager; this.matcher = matcher; this.callDescriber = callDescriber; this.repeatConstraint = repeatConstraint; }
public AfterMustHaveHappenedConfiguration(FakeManager fakeManager, ICallMatcher matcher, string callDescription, Repeated repeatConstraint) { this.fakeManager = fakeManager; this.matcher = matcher; this.callDescription = callDescription; this.repeatConstraint = repeatConstraint; }
public ExpectedCall(ICallMatcher matcher, Mock target) { Matcher = matcher; Target = target; }