コード例 #1
0
ファイル: Expectations.cs プロジェクト: yonglehou/Orleans.Bus
 public IRepeatExpectation Throw(Exception exception)
 {
     this.exception = exception;
     expectation    = Create();
     return(this);
 }
コード例 #2
0
ファイル: Expectations.cs プロジェクト: yonglehou/Orleans.Bus
 IExpectation IRepeatExpectation.Times(int times)
 {
     expectation = Create(times);
     return(this);
 }
コード例 #3
0
ファイル: Expectations.cs プロジェクト: yonglehou/Orleans.Bus
 public IRepeatExpectation Return <TResult>(TResult result)
 {
     this.result = result;
     expectation = Create();
     return(this);
 }