If I try this, I just get an exception:

System.TypeLoadException : Access is denied: 'Namespace.IInternalInterface'.

Making the interface public is not an acceptable solution. I don't want to change the visiblity of my API in order to test it.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 1 down vote accepted

I found the answer to this:

NMock2, (and other mocking frameworks). Will create the mock objects in dynamically generated assemblies. In order for the mocking framework to create the mock object, the internals should be visible to these assemblies.

Just add the following declarations to the AssemblyInfo.cs class for the Module Under Test:

// Allow unit test and mock assemblies to see internal members.
[assembly: InternalsVisibleTo("MyAssembly.UnitTest")]
[assembly: InternalsVisibleTo("NMock2")]
[assembly: InternalsVisibleTo("Mocks")]
[assembly: InternalsVisibleTo("MockObjects")]
link|improve this answer
did this worked for you? I gave up after many attempts and I changed types to public. – nolith Mar 10 at 18:03
I can't get this to work either. – Rhyous May 3 at 21:04
feedback

Found and documented the solution.

http://www.rhyous.com/2012/05/03/nmock2-internal-interface/

Turns the newer version of NMock2 (I got it here: NMock2 Project) only needs one and it is different.

[assembly: InternalsVisibleTo("DynamicProxyGenAssembly2")]
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.