|
From: <sm...@us...> - 2003-07-24 23:09:09
|
Update of /cvsroot/nmock/nmock/test/NMock/Dynamic
In directory sc8-pr-cvs1:/tmp/cvs-serv24112/test/NMock/Dynamic
Modified Files:
ClassGeneratorTest.cs
Log Message:
Index: ClassGeneratorTest.cs
===================================================================
RCS file: /cvsroot/nmock/nmock/test/NMock/Dynamic/ClassGeneratorTest.cs,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** ClassGeneratorTest.cs 27 Jun 2003 21:15:54 -0000 1.7
--- ClassGeneratorTest.cs 24 Jul 2003 23:09:05 -0000 1.8
***************
*** 18,22 ****
void WithOtherArgs(int x, bool y, object o, IList list);
void WithParams(int i, params string[] extra);
- void WithLongParam(long l);
object simpleReturn();
string stringReturn();
--- 18,21 ----
***************
*** 212,223 ****
mock.Expect("WithOtherArgs", new IsEqual(6), new IsEqual(true), new IsNull(), new IsEqual(l));
thingy.WithOtherArgs(6, true, null, l);
- mock.Verify();
- }
-
- [Test]
- public void CallMethodWithLongParam()
- {
- mock.Expect("WithLongParam", 5L);
- thingy.WithLongParam(5L);
mock.Verify();
}
--- 211,214 ----
|