The "Explicit" Attribute applied on a whole TestFixture is not respected by NCrunch
namespace xyz
{
using NUnit.Framework;
[TestFixture]
[Explicit]
public class Test
{
[Test]
public void Runs() // but should not
{
Assert.Fail("Should not run");
}
[Test]
[Explicit]
public void DoesNotRun()
{
Assert.Fail();
}
}
}