Reactiveui: Remove fully qualified test names in test explorer

Created on 29 Mar 2017  路  4Comments  路  Source: reactiveui/ReactiveUI

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.

Backer Requested housekeeping outdated

Most helpful comment

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>

All 4 comments

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>

giphy

@ghuntley I could take a look at this.

@mholo65 go for it!

Was this page helpful?
0 / 5 - 0 ratings