|
From: <joe...@us...> - 2002-12-12 21:39:48
|
Update of /cvsroot/nmock/nmock/test/NMock/Dynamic
In directory sc8-pr-cvs1:/tmp/cvs-serv18108/test/NMock/Dynamic
Modified Files:
ClassGeneratorTest.cs
Log Message:
Forgotten whatever the hell it is we've done (but Steve did some too)
Index: ClassGeneratorTest.cs
===================================================================
RCS file: /cvsroot/nmock/nmock/test/NMock/Dynamic/ClassGeneratorTest.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ClassGeneratorTest.cs 15 Nov 2002 22:31:10 -0000 1.2
--- ClassGeneratorTest.cs 12 Dec 2002 21:39:44 -0000 1.3
***************
*** 227,235 ****
mock.ExpectAndReturn("VirtualMethod", "hello");
- mock.ExpectAndReturn("ToString", "STRING");
mock.ExpectAndReturn("GetHashCode", 123);
mock.ExpectAndReturn("AbstractMethod", "fish");
Assertion.AssertEquals("hello", s.VirtualMethod());
- Assertion.AssertEquals("STRING", s.ToString());
Assertion.AssertEquals(123, s.GetHashCode());
Assertion.AssertEquals("fish", s.AbstractMethod());
--- 227,233 ----
|