Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/Dynamic/Generate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7319/DotNetMock.Tests/Dynamic/Generate
Modified Files:
Tag: RFE_1001778
ClassGeneratorTests.cs ILUtilsTests.cs
Log Message:
- Changed new Test classes to correct namespace
- Added non-ambiguous GetMethod() call for "Call" method in ClassGenerator.
- Minor coding std refactorings.
Index: ClassGeneratorTests.cs
===================================================================
RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/Dynamic/Generate/ClassGeneratorTests.cs,v
retrieving revision 1.12.2.4
retrieving revision 1.12.2.5
diff -C2 -d -r1.12.2.4 -r1.12.2.5
*** ClassGeneratorTests.cs 27 Dec 2004 00:45:28 -0000 1.12.2.4
--- ClassGeneratorTests.cs 1 Jan 2005 21:57:15 -0000 1.12.2.5
***************
*** 100,103 ****
--- 100,109 ----
return null;
}
+
+ public object Call( string methodName, params object[] args )
+ {
+ return null;
+ }
+
public object[] IncomingArgs = null;
public object[] OutgoingArgs = null;
Index: ILUtilsTests.cs
===================================================================
RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/Dynamic/Generate/Attic/ILUtilsTests.cs,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -d -r1.1.2.1 -r1.1.2.2
*** ILUtilsTests.cs 26 Dec 2004 23:58:53 -0000 1.1.2.1
--- ILUtilsTests.cs 1 Jan 2005 21:57:15 -0000 1.1.2.2
***************
*** 7,15 ****
using System.Collections;
using System.Reflection.Emit;
!
using NUnit.Framework;
#endregion
! namespace DotNetMock.Dynamic.Generate
{
[TestFixture]
--- 7,15 ----
using System.Collections;
using System.Reflection.Emit;
! using DotNetMock.Dynamic.Generate;
using NUnit.Framework;
#endregion
! namespace DotNetMock.Tests.Dynamic.Generate
{
[TestFixture]
|