Code[TestCaseSource(nameof(FooSource))]
public void Foo(char c)
{
}
public static IEnumerable FooSource { get {
yield return new TestCaseData('a').SetName("{m}_Alpha");
} }
In this test, the test name shown in the built-in Test Explorer is "Foo_Alpha" - the parentheses are dropped since I set a name. However, it appears in the Test Runner as "Foo_Alpha('a')".
Hi Avi,
Thanks for the code snippet. I have managed to reproduce the issue.
Please give us some time to research the issue in detail.