[v3.15.0.1]
Hi,
Code:
[TestFixture("dummy")]
internal class BadFixture
{
public BadFixture(int dummy)
{
}
[Test]
public void YouShallNotPass()
{
}
}
Given above test fixture (NUnit), NCrunch reports:
Quote:
NCrunch: This test reported an inconclusive result. You can adjust whether NCrunch should treat this result as a pass by using the 'Consider inconclusive tests as passing' NCrunch project-level configuration setting.
....BadFixture does not have a suitable constructor
Should this really be inconclusive (which you then miss if you have "Consider inconclusive tests as passing" enabled) rather than an error?
Thanks.