Do you want to request a feature or report a bug?
Feature
What is the current behavior?
ReactiveUI's unit tests use fully qualified names, which makes it hard to see the actual name of the tests.
What is the motivation / use case for changing the behavior?
https://twitter.com/jbogard/status/846733211250102272
Other information (e.g. stacktraces, related issues, suggestions how to fix)
We are after someone from the community to send in a pull request that implements the changes as detailed in the Tweet above.
EDIT: zomg the solution doesn't require touching the code, just app.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="xunit.methodDisplay" value="method"/>
</appSettings>
</configuration>

@ghuntley I could take a look at this.
@mholo65 go for it!
Most helpful comment
EDIT: zomg the solution doesn't require touching the code, just
app.config: