I have a number of tests that are of the form:
Code:
[Test]
public void Test_Some_Action([Random(2, 53, 4)] int N)
{
}
The NCrunch v1.38.0.17b test results are often (but not always) responding with failures with the following error:
Quote:This test was not executed during a planned execution run. Ensure your test project is stable and does not contain issues in initialisation/teardown fixtures.
These tests ran fine with prior versions and also run fine using the nUnit test runner directly.
Removing the use of input arguments and hardcoding a value to the variable in the test corrects the problem.
Ideas? Do I just have to avoid random input arguments for now?