Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/Dynamic/Generate
In directory sc8-pr-cvs1:/tmp/cvs-serv13414/DotNetMock.Tests/Dynamic/Generate
Modified Files:
ClassGeneratorTests.cs
Log Message:
Added MailingList Example
Index: ClassGeneratorTests.cs
===================================================================
RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/Dynamic/Generate/ClassGeneratorTests.cs,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** ClassGeneratorTests.cs 25 Oct 2002 03:02:27 -0000 1.2
--- ClassGeneratorTests.cs 29 Dec 2002 02:47:39 -0000 1.3
***************
*** 2,5 ****
--- 2,6 ----
using NUnit.Framework;
using DotNetMock.Dynamic;
+ using DotNetMock.Dynamic.Predicates;
using DotNetMock.Dynamic.Generate;
using System.Collections;
***************
*** 137,141 ****
[Test]
! [ExpectedException(typeof(AssertionException))]
public void CallMethodWithParamExpectationsThatFails()
{
--- 138,142 ----
[Test]
! [ExpectedException(typeof(VerifyException))]
public void CallMethodWithParamExpectationsThatFails()
{
***************
*** 154,158 ****
[Test]
! [ExpectedException(typeof(AssertionException))]
public void CallMethodWithTwoParamExpectationsThatFails()
{
--- 155,159 ----
[Test]
! [ExpectedException(typeof(VerifyException))]
public void CallMethodWithTwoParamExpectationsThatFails()
{
|