It turns out that one can right-click on the source code of any of:
- A specific test (
public void MyTest()
) - A class containing tests (
public class MyTestClass
) - A namespace containing tests (
namespace My.Project.Test
)
and get a context menu to either run or debug tests within each given scope. (Note: Text in Context Menu does not change)
This has proven the most useful method of selectively running tests for me.