Is there a way to identify which NUnit tests are not associated with a test case from within Test Explorer in Visual Studio?
I want to identify new tests that have been added by the team and ensure they have a test case reference in Azure Test Plans
Update: Is there some kind of filter or non-obvious method for filtering tests that are not associated with test cases.
In Visual Studio, to check whether a test method has associated to a Test Case in Azure Test Plans, you can do like as below:
Open you test project in Visual Studio.
On Test Explorer, right lick on the test method you want to view, then select "
Associate to Test Case
" option.On the pop-up window, under "
Existing Associations
" section, you can see all the Test Cases which have been associated with current test method.