My ReSharper templates for Unit Testing
As I always have problem synchronizing my office and home machine’s templates I thought this would be good place to store them.
Inline templates (LiveTemplates.xml)
test
[Test]
public void Method_Condition_Result()
{
$END$
}
setup
[SetUp]
public void SetUp()
{
$END$
}
record
using(mocks.Record())
{
$END$
}
play
using(mocks.Playback())
{
$END$
}
File templates (FileTemplates.xml)
NUnitTestFile
using NUnit.Framework;
namespace $Namespace$
{
[TestFixture]
public class $FileName$
{
[Test]
public void Method_Condition_Result()
{
}
};
}