Visual Studio Unit Testing Accessor, how to re-generate them without closing VS?

.net, unit-testing, visual-studio-2008

Solution

Open the class where the private/protected method is located. Right click and choose "Create Private Accessor" and choose the proper test project.

Problem

Sometime, when the Unit Test of a class has been done and method use _Accessor while the code has changed. What ever you compile many time it still doesn't "synchronize" the _Accessor file. The only thing that work is closing VS2008 and reopend it. Any trick to "regenerate" the Testing Accessor?

Original source