jcansdale / TestDriven.Net-Issues

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

Honor default parameters when executing ad-hoc test methods #115

Closed jcansdale closed 6 years ago

jcansdale commented 6 years ago

For example, executing the following method should output Bar:

void Foo(string foo = "Bar")
{
    Console.WriteLine(foo);
}