コード例 #1
0
 internal UnorderedCallAssertion(FakeManager fakeManager, ICallMatcher matcher, string callDescription, Repeated repeatConstraint)
 {
     this.fakeManager      = fakeManager;
     this.matcher          = matcher;
     this.callDescription  = callDescription;
     this.repeatConstraint = repeatConstraint;
 }
コード例 #2
0
 internal UnorderedCallAssertion(FakeManager fakeManager, ICallMatcher matcher, Action <IOutputWriter> callDescriber, Repeated repeatConstraint)
 {
     this.fakeManager      = fakeManager;
     this.matcher          = matcher;
     this.callDescriber    = callDescriber;
     this.repeatConstraint = repeatConstraint;
 }
コード例 #3
0
 public AfterMustHaveHappenedConfiguration(FakeManager fakeManager, ICallMatcher matcher, string callDescription, Repeated repeatConstraint)
 {
     this.fakeManager      = fakeManager;
     this.matcher          = matcher;
     this.callDescription  = callDescription;
     this.repeatConstraint = repeatConstraint;
 }
コード例 #4
0
 internal UnorderedCallAssertion(FakeManager fakeManager, ICallMatcher matcher, string callDescription, Repeated repeatConstraint)
 {
     this.fakeManager = fakeManager;
     this.matcher = matcher;
     this.callDescription = callDescription;
     this.repeatConstraint = repeatConstraint;
 }
コード例 #5
0
 public ExpectedCall(ICallMatcher matcher, Mock target)
 {
     Matcher = matcher;
       Target = target;
 }