Shared Resharper Templates
This is more for someone in the user community who has access to time and webspace.
Would someone put together a place where we can have a giant library of R# templates which we can all share and reuse?
We could have a folder with all the GOF patterns.
Here's two to start (Note that one is included in the other):
#region NUnit TestFixture (R#:tfix)
namespace NUnit
{
public class $TestName$_TestFixture
{
public void SetUp()
{
Log.Debug("$TestName$.SetUp()");
}
#region NUnit TestCase (R#:tcase)
public void $TestCase$()
{
Assert.Fail("$TestCase$ Not Implemented");
}
#endregion
public void TearDown()
{
Log.Debug("$TestName$.TearDown()");
}
}
}
#endregion
Please sign in to leave a comment.
Forgot the "Pre"