F12 like shortcut in Visual Studio to jump from a unit test directly to the code (through the _accessor)
F12 is an awesome shortcut to jump to the implementation of a method/member.
Unfortunately when using the Unit Testing from Visual Studio it creates a Class_accessor file and I can't jump through it.
So when I press F12 on MyClass_accessor.MyMethod() I'd like to get to MyClass.MyMethod and not the _accessor interface/mock.
Any ideas how to jump from 开发者_如何学JAVAa unit test directly to the code (through the _accessor)
精彩评论