How to execute the below code from the Nunit Console if I doesnt know the Parameters which will be passed during execution.
[TestCase]
public void ExecuteString(string someValue)
{
Console.WriteLine(someValue);
}
I know that we should pass the parameters in this format [TestCase("Values")]. But If I'm not sure about what the parameters will be ?