jcansdale / TestDriven.Net-Issues

Issue tracking for TestDriven.Net
https://github.com/jcansdale/TestDriven.Net-Issues/issues
24 stars 2 forks source link

Default arguments not working when `Test With > In-Proc (VS SDK)` #129

Closed jcansdale closed 6 years ago

jcansdale commented 6 years ago

The following method should output Hello, World! when executed using Run Test(s) or Test With > In-Proc (VS SDK).

void Hello(string name = "World")
{
    Console.WriteLine($"Hello, {name}!");
}

Currently it will output Hello, ! when executed using Test With > In-Proc (VS SDK).