I have a test class with multiple TestFixture and I want to provide different category per testfixture like:
[TestFixture("WebsiteA"), Category("A")]
[TestFixture("WebsiteB"), Category("B")]
public class LoginTests
{
public LoginTests(string websiteName)
{
}
[Test]
//test
}
When I am running test with nunit3-console runner giving stating --where "cat==A" then it still run the test method for both websites. Is there a way to run test for just one category in this kind of model?