Could you please verify that this simple test crashes NCrunch:
Code:
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace UnitTestProject1
{
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
var _appDomain = AppDomain.CreateDomain(string.Format("App_{0}", Guid.NewGuid()));
}
}
}
If I choose to build test project as 4.0 .NET Framework then everything works fine, but when I choose 4.5.2. .NET Framework then NCrunch keeps showing System.AccessViolationException. BTW MSTest runs this test without any problem.
I use latest NCrunch 3.3.0.6 with VS2013