SDK 2016.2.20160913.94928 "One or more child tests had errors, exception doesn't have a stack trace"
Hello,
So I've updated to the latest SDK 2016.2.20160913.94928. And now I am able to run my nunit tests however...though each individual test passes I am getting the following error related to my 'testenvironment'
"One or more child tests had errors, exception doesn't have a stack trace"
My test environment class look like this. Is there another change I need to make for 2016.2 ?
[assembly: RequiresSTA]
namespace TestCop.Plugin.Tests
{
[ZoneDefinition]
public interface ITestCopTestZone : ITestsZone, IRequire<PsiFeatureTestZone>
{}
{
[ZoneDefinition]
public interface ITestCopTestZone : ITestsZone, IRequire<PsiFeatureTestZone>
{}
[SetUpFixture]
public class TestEnvironmentAssembly : ExtensionTestEnvironmentAssembly<ITestCopTestZone>
{
}
public class TestEnvironmentAssembly : ExtensionTestEnvironmentAssembly<ITestCopTestZone>
{
}
}
Please sign in to leave a comment.