views:

27

answers:

2

I know that there is a way to do this, but I can't find it again.

So, does any one know how to allow Resharper to allow underscores in unit tests?

So, for example I want this to be OK


In MyClassTest.cs

public void MyMethodName_StateUnderTest_ExpectedResult()
{}

But I want this to flag:


In MyClass.cs

public void MyPoorly_Named_Method()
{}

Thanks for any help

A: 

The AgentSmith plugin for Resharper gives you this level of control over naming.

Handcraftsman
+2  A: 

This post demonstrates how to configure this: http://atombrenner.blogspot.com/2010/07/how-to-change-resharper-naming-style.html

Jay
Just what I was looking for. Thanks!
Vaccano