Forum member
JeetKunDoug
2 posts
Posts by JeetKunDoug
-
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")] …
13 Dec 2011 16:08 UTC
-
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…
02 Sep 2011 20:20 UTC