I just upgraded a bunch of projects to VS2015/C#6.
Now MSTest\'s Code Coverage analysis is reporting that some auto properties aren\'t covered by unit tests. This wa
As a workaround, you can add the following to your .runsettings file:-
.*get_.* .*set_.* ...
It's not a great workaround, but as long as you aren't using any functions with "get_" or "set_" in the names it should get you the behaviour you need.