Ejemplo n.º 1
0
 /// <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);
 }
 public ExpectationVerificationInformation(CallRecordCollection allCallRecords, IExpectation expected)
 {
     this.AllCallRecords = allCallRecords;
       this.Expected = expected;
 }