While running an Nunit project with the .csproj extension through Nunit3-console, the two tests are correctly picked correctly.
nunit3-console.exe SeleniumCHash.csproj
But, when I try to filter out one of the tests by selecting the class file to be executed, the tests are not getting picked up.
nunit3-console.exe --where "class =~ 'SeleniumCHash: FirstTest'" SeleniumCHash.csproj
The following is my Class File.
namespace SeleniumCHash
{
[TestFixture]
public class FirstTest : TestBaseClass
{
[Test]
public void LoginCheck()
{
}
}
}