NUnit v3 tests specified with [TestCaseSource] are not picked up by the test runner.
Example:
C#public class Class1
{
[TestCaseSource("GetValues")]
public void TestName(string v)
{
}
private static string[] GetValues()
{
return new string[]
{
"value1",
"value2"
};
}
}
Shows up fine and executes in visual studio's test runner with the NUnit test adapter.
Thank you for your report. I have reproduced this issue locally. We will fix it in our future releases.