I have the following code which works well, when tests are executed.
But then i try to run these tests + code coverage calculation (SharpDevelop 4) it throws the exception.
Can somebody describe why this happens?
SetUp : System.Security.VerificationException : Operation could destabilize the runtime.
[TestFixture]
public class NinjectExamplesTest
{
private interface IExampleInterface
{
}
private class ExampleInterfaceImplementation : IExampleInterface
{
}
private class ExampleClass
{
[Inject]
public IExampleInterface ExampleProperty { get; set; }
}
IKernel kernel;
[SetUp]
public void Init()
{
kernel = new StandardKernel();
kernel.Bind<IExampleInterface>().To<ExampleInterfaceImplementation>();
}
[Test]
public void TestStandardResolving()
{
// setup
// business
var result = kernel.Get<IExampleInterface>();
// verify
result.Should().NotBeNull();
result.Should().BeOfType<ExampleInterfaceImplementation>();
}
[Test]
public void TestPropertyResolving()
{
// setup
var exampleClass = new ExampleClass();
// business
kernel.Inject(exampleClass);
// verify
exampleClass.ExampleProperty.Should().NotBeNull();
exampleClass.ExampleProperty.Should().BeOfType<ExampleInterfaceImplementation>();
}
}