"Test" word preceding Unit Test Methods
Previous testing frameworks including NUnit 1.0 by convention demands the Test word as prefix for test method names in order for the test runner to run it. Now that we are using .NET attributes to instruct the runner which test methods to run, i find naming test methods with a "Test" prefix as disadvantageous because of the following reasons:
1. It is redundant.
2. It produces longer method names (imagine those 4 letter words that you have to type multiplied by the number of test cases in your project, wasted effort in my opinion).
3. You have to type "Test" word for Resharper's File Structure Popup (Ctrl+F12) find member feature.
This method naming i think is a violation to the design guidelines (method names should start with action words) but i am willing to trade that because of the following disadvantages.