IntroductionGenerates a Test Project "<SourceProject>_Test" containing a Test Class "<SourceClass>_Test" containing a Test Method "<SourceMethod>_Test". DetailsSo if you have
Public Class SomeClass
Public Sub SomeMethod()
End Sub
End Class
... in a Project called "SomeProject" Then activation will cause the generation of an additional project within the solution called "SomeProject_Test". This project will contain a class...
Public Class SomeClass_Test
Public Sub SomeMethod_Test()
End Sub
End Class
See alsoCR_CreateTestMethod
|
This is a handy plugin but it generates all my tests in VB and not C#. what do I have to do to change this default behavior?