From: <gc...@us...> - 2004-01-05 01:19:49
|
Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples/CustomExpectation In directory sc8-pr-cvs1:/tmp/cvs-serv911/DotNetMock.Examples/CustomExpectation Modified Files: ExpectationPerson.cs Log Message: Added ClearExpected call to constructor Index: ExpectationPerson.cs =================================================================== RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Examples/CustomExpectation/ExpectationPerson.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** ExpectationPerson.cs 2 Jan 2004 00:55:24 -0000 1.2 --- ExpectationPerson.cs 5 Jan 2004 01:19:46 -0000 1.3 *************** *** 12,15 **** --- 12,16 ---- public ExpectationPerson( string name ) : base( name ) { ClearActual(); + ClearExpected(); } |