|
From: <exo...@us...> - 2002-12-31 21:36:43
|
Update of /cvsroot/nmock/nmock/src/NMock
In directory sc8-pr-cvs1:/tmp/cvs-serv31302/src/NMock
Modified Files:
MockCall.cs
Log Message:
modified nant build file to build separate core and test assemblies
added new CollectingConstraint for post-test parameter validation
modified ClassGenerator to support overriding of internal and protected internal methods
fixed exception message in MockCall.checkArguments
Index: MockCall.cs
===================================================================
RCS file: /cvsroot/nmock/nmock/src/NMock/MockCall.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** MockCall.cs 16 Dec 2002 14:49:51 -0000 1.1
--- MockCall.cs 31 Dec 2002 21:36:39 -0000 1.2
***************
*** 63,67 ****
if ( HasExpectations )
{
! Mock.Assertion.AssertEquals("x() called with incorrect number of parameters",
expectedArgs.Length, actualArgs.Length);
--- 63,67 ----
if ( HasExpectations )
{
! Mock.Assertion.AssertEquals(methodName + "() called with incorrect number of parameters",
expectedArgs.Length, actualArgs.Length);
|