|
From: <exo...@us...> - 2003-03-13 19:52:49
|
Update of /cvsroot/nmock/nmock/src/NMock
In directory sc8-pr-cvs1:/tmp/cvs-serv23876/src/NMock
Modified Files:
Method.cs
Log Message:
modifications to nmock.sln to include sample project
added unit test to indicate NoCall bug
Index: Method.cs
===================================================================
RCS file: /cvsroot/nmock/nmock/src/NMock/Method.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Method.cs 16 Dec 2002 14:49:59 -0000 1.1
--- Method.cs 13 Mar 2003 19:52:44 -0000 1.2
***************
*** 57,60 ****
--- 57,62 ----
public virtual void Verify()
{
+ // HACK!
+ // TODO: iterate through and verify every call. delegate verification to call instance
Mock.Assertion.AssertEquals(name + "() " + CallCountErrorMessage(),
expectations.Count, timesCalled);
|