I Want to exclude only 1 test case parameter from the below during comman line execution
nunit3-console.exe Excel.Test.dll --where="cat!=IgnoreForNow"
but this excludes all the parameters(A, B, C, D)
[TestCase("A"), Category("IgnoreForNow")]
[TestCase("B")]
[TestCase("C")]
[TestCase("D")]
public void TestReports(string fileName)
{
Test("foo", fileName);
}
I don't want to use ignore attribute as I want to skip this test case execution in the build system but want to execute them locally.
Is there any way in NUnit while executing from command line