Update of /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/Dynamic/Generate
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4496/DotNetMock.Tests/Dynamic/Generate
Modified Files:
ClassGeneratorTests.cs
Log Message:
- Minor region additions
Index: ClassGeneratorTests.cs
===================================================================
RCS file: /cvsroot/dotnetmock/dotnetmock/DotNetMock.Tests/Dynamic/Generate/ClassGeneratorTests.cs,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** ClassGeneratorTests.cs 1 Jan 2005 22:57:51 -0000 1.13
--- ClassGeneratorTests.cs 5 Jan 2005 04:25:39 -0000 1.14
***************
*** 6,14 ****
using System.Collections;
using System.Reflection;
- using System.Reflection.Emit;
- using System.Diagnostics;
namespace DotNetMock.Tests.Dynamic.Generate
{
public interface IThingy
{
--- 6,13 ----
using System.Collections;
using System.Reflection;
namespace DotNetMock.Tests.Dynamic.Generate
{
+ #region Dummy Test Structures
public interface IThingy
{
***************
*** 59,66 ****
}
[TestFixture]
public class ClassGeneratorTest
{
-
private ClassGenerator cg;
private IDynamicMock mock;
--- 58,66 ----
}
+ #endregion
+
[TestFixture]
public class ClassGeneratorTest
{
private ClassGenerator cg;
private IDynamicMock mock;
***************
*** 111,115 ****
private MethodInfo _methodInfo = null;
}
!
[Test] public void TestInParameters()
{
--- 111,119 ----
private MethodInfo _methodInfo = null;
}
! [Test]
! public void GeneratePersistentAssembly()
! {
!
! }
[Test] public void TestInParameters()
{
|