Visual studio 2010 template for new UnitTest
Posted
by stacker
on Stack Overflow
See other posts from Stack Overflow
or by stacker
Published on 2010-05-21T00:47:27Z
Indexed on
2010/05/21
0:50 UTC
Read the original article
Hit count: 238
What ways do I have for creating a unit test template like this? I'm using visual studio 2010 and Resharper 5.
using NUnit.Framework;
namespace SolutionName.Core
{
[TestFixture]
public class ClassNameTests
{
[Test]
public void test()
{
}
}
}
© Stack Overflow or respective owner