Any test case with a ">" symbol in it's data will fail to run in 1.35b. Simple reproduction:
using NUnit.Framework;
namespace NCrunchTestCase
{
[TestFixture]
public class TestCaseTests
{
public int counter = 0;
[TestCase("A", Description = "This will run")]
[TestCase(">", Description = "Greater than breaks NCrunch - this test doesn't run")]
[TestCase("B", Description = "This will run")]
public void GreaterThanInTestCaseBreaksNCrunch(string input)
{
counter++;
Assert.Pass("Made it here with input {0}.", input);
}
[TestFixtureTearDown]
public void TearDown()
{
Assert.That(counter, Is.EqualTo(3), "Did not run all tests.");
}
}
}
Note that only 2 tests run, and if you look at the output you'll see that only A and B were passed into the test. I also submitted a bug report.