|
From: <joe...@us...> - 2002-11-15 22:31:14
|
Update of /cvsroot/nmock/nmock/test/NMock/Dynamic In directory usw-pr-cvs1:/tmp/cvs-serv30242/test/NMock/Dynamic Modified Files: ClassGeneratorTest.cs Log Message: - Added sensible error messages - Renamed IMock.Object to IMock.MockInstance - Renamed Conditions to Constraints and moved to new namespace. - Renamed eval() to Eval() (.NET conventions). - Renamed IMock.SetValue() to IMock.SetupResult (as in Java MockObjects). Index: ClassGeneratorTest.cs =================================================================== RCS file: /cvsroot/nmock/nmock/test/NMock/Dynamic/ClassGeneratorTest.cs,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ClassGeneratorTest.cs 10 Nov 2002 16:32:27 -0000 1.1.1.1 --- ClassGeneratorTest.cs 15 Nov 2002 22:31:10 -0000 1.2 *************** *** 1,4 **** --- 1,5 ---- using NUnit.Framework; using NMock; + using NMock.Constraints; using System.Reflection.Emit; using System.Collections; |