Is it possible to map an object with a protected or internal constructor?
Hi, with version 3.0 you can mock an object with a protected constructor.
Internal constructors are not supported yet.
We already have this requirment on our to do list, although there are .NET security issues when trying to instantiate an internal constructor.
If you own the internal constructor code you can decorate it with
StrongNameIdentityPermission for .NET 1.x or use
friend in .NET 2.0
I hope this helps