This test runs and passes using Resharper's test runner and nUnit, but for some reason nCrunch can't parse it.
Code:
using NUnit.Framework;
namespace NCrunchTestCase
{
[TestFixture]
public class TestCaseTests
{
[TestCase("(")]
public void OpenParenBreaksNCrunch(string original)
{
Assert.True(true);
}
}
}
Submitted a bug report via nCrunch as well. And btw - thanks for supporting TestCase - I just removed about 100 lines of duplicate code in a test suite which makes me happy.