jjhorn
jjhorn

Reputation: 53

UnitTest C# VS15

I have a VS15 solution containing a Class Library project (a dll to test) and a Unit Test project with all the tests to run. I could only run each test separately, but I want to visualize the UnitTest tab instead, to have a global view of my test. In according to MSDN guidelines, this tab should appear after the building phase, but it's not happening. How can I display that tab?

Upvotes: 1

Views: 55

Answers (1)

Styxxy
Styxxy

Reputation: 7517

In menu : Test > Windows > Test explorer.

menuitem

More info on Microsoft docs : https://learn.microsoft.com/en-us/visualstudio/test/getting-started-with-unit-testing

Upvotes: 3

Related Questions