One little detail that may be the cullpritt of the problem: we're using C++/CLI in this project, and C# is (much to my dismay) not allowed - but again, it really shouldn't matter.
#pragma once
using namespace System;
using namespace System::IO;
using namespace NUnit::Framework;
using namespace TypeMock;
namespace TypeMockTest
{
[TestFixture]
public ref class FileInfoEnumeratorTest
{
public:
[Test]
void Iter1()
{
MockManager::Init();
Mock ^dinfo = MockManager::Mock(DirectoryInfo::typeid);
dinfo->ExpectCall("GetFileSystemInfos");
MockManager::Verify();
}
};
}
I then tried installing TypeMock 3.5.2.0 instead, but it gives the same error.
Then, just for the sake of it, I commented out all code inside "Iter1()", and ran the empty test through nunit-console and tmockrunner. Result being an exception:
E:TypeMockTestdebug>tmockrunner nunit-console TypeMockTest.dll
NUnit version 2.2.8
Copyright (C) 2002-2003 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov, Charlie Poole.
Copyright (C) 2000-2003 Philip Craig.
All Rights Reserved.
OS Version: Microsoft Windows NT 5.1.2600 Service Pack 2 .NET Version: 2.0.50727.42
.F
Tests run: 1, Failures: 1, Not run: 0, Time: 0.625 seconds
SetUp/TearDown Failures:
1) TypeMockTest.FileInfoEnumeratorTest : The type initializer for '<Module>' threw an exception.
at System.RuntimeMethodHandle._InvokeConstructor(Object[] args, SignatureStruct& signature, IntPt
r declaringType)
at System.RuntimeMethodHandle.InvokeConstructor(Object[] args, SignatureStruct signature, Runtime
TypeHandle declaringType)
at System.Reflection.RuntimeConstructorInfo.Invoke(BindingFlags invokeAttr, Binder binder, Object
[] parameters, CultureInfo culture)
at System.Reflection.ConstructorInfo.Invoke(Object[] parameters)
at NUnit.Core.Reflect.Construct(Type type)
at NUnit.Core.TestFixture.DoFixtureSetUp(TestResult suiteResult)
Failures:
1) TypeMockTest.FileInfoEnumeratorTest.Iter1 : TestFixtureSetUp Failed
[/code]