Forum member

JeetKunDoug

2 posts

Posts by JeetKunDoug

  1. TestCase attribute with ">" fails to run

    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")] …

  2. Interesting bug with nUnit TestCase support

    This test runs and passes using Resharper's test runner and nUnit, but for some reason nCrunch can't parse it. [code=csharp]using NUnit.Framework; namespace NCrunchTestCase { [TestFixture] public class TestCaseTests { [TestCase("(")] public void OpenParenBreak…