Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing resharper settings to suit mspec coding

When I create a new test like the following:

It should_get_something = () => foo();

When I hit the semi-colon resharper sticks private on the front of the delegate:

Private It should_get_something = () => foo();

I then have to remove it.

Can I tell resharper not to do this? I tried adding a rule to the naming style dialog selecting Machine.Specifications.It and unchecking Private but this had no effect.

like image 546
78lro Avatar asked Nov 12 '10 12:11

78lro


1 Answers

In general I recommend to set up ReSharper like Aaron has suggested here.

like image 57
Alexander Groß Avatar answered Oct 14 '22 05:10

Alexander Groß