I work with visual studio 2012 and Reshaper 7.1.1 and have behavior that really bothers me.
I like to call my tests in C #, for example, the following
public void Identifier_Created_As_Expected()
I feel this is a good way to quickly prepare what the test does, etc.
The problem is that Reshaper complains and gives a warning saying that the method does not comply with the rule, etc. Which is correct, since I would not call my usual methods like that.
Is there a way that my test projects do not receive resharper, do not complain about it, allow? Although this does not allow the use of ordinary class libraries.
source share