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.