Closed jaaufauvre closed 6 years ago
Hi @Alex-D14. Thanks for reporting this issue. Yes, multiple return types is a new feature that we haven't added support for yet; hopefully soon!
Thanks!
Tuples are now supported (since we upgraded to the latest version of Roslyn). I added additional tests to verify that tuples are working as expected.
Hi,
It seems the methods returning tuples cannot be stubbed right now:
For instance:
DateTime min, DateTime max) ComputeDates();
Causes the following code to be generated:
void global::My.Package.IService.ComputeDates()
Instead of:
(DateTime min, DateTime max) global::My.Package.IService.ComputeDates()
Alex.