I am trying to run nunit3 parameterized test using TestCase attribute.
My Test method looks like:
[Test]
[TestCase("testuser")]
public void OBA_Test(String name)
{
driver.Manage().Timeouts().ImplicitlyWait(TimeSpan.FromSeconds(10000));
driver.Navigate().GoToUrl(baseURL + somewebsite)
// Code to test website.
}
Then I take the dll and try to run using
nunit3-console.exe "C:\temp\test\Selenium Testing Prod.dll" /run:"SeleniumTests.SeleniunProdTest.OBA_Test(\"testuser\")"
What am I doing wrong here? Any pointers ?
Ref: nunit-console does not run tests parameterized with TestCase attribute