コード例 #1
0
ファイル: CallRecord.cs プロジェクト: alaendle/rhino-mocks
 /// <summary>
 /// Initializes a new instance of the <see cref="CallRecordCollection"/> class.
 /// </summary>
 /// <param name="collection">The collection to copy.</param>
 internal CallRecordCollection(CallRecordCollection collection)
 {
     this.list = new List<CallRecord>(collection.list);
 }
コード例 #2
-1
 public ExpectationVerificationInformation(CallRecordCollection allCallRecords, IExpectation expected)
 {
     this.AllCallRecords = allCallRecords;
       this.Expected = expected;
 }