Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock
In directory usw-pr-cvs1:/tmp/cvs-serv32027/DotNetMock
Modified Files:
ExpectationCollection.cs
Log Message:
Index: ExpectationCollection.cs
===================================================================
RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock/ExpectationCollection.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** ExpectationCollection.cs 21 Sep 2002 06:19:18 -0000 1.1
--- ExpectationCollection.cs 21 Sep 2002 07:08:52 -0000 1.2
***************
*** 7,10 ****
--- 7,14 ----
public interface ExpectationCollection : Expectation
{
+ /// <summary>
+ /// Adds object to actual collection
+ /// </summary>
+ /// <param name="actual">object to add</param>
void AddActual(object actual);
void AddActualMany(object[] actualMany);
|