Autocreate Tests
August 10, 2010 Leave a comment
Dear Microsoft:
When you autocreate a test class, can you include the name of the class in the initialize methods?
#region Additional test attributes
[TestInitialize()]
public void MyTestInitialize()
{
}
[TestCleanup()]
public void MyTestCleanup()
{
}
Yuck
[TestInitialize()]
public void InterfaceKitTestInitialize()
{
}
[TestCleanup()]
public void InterfaceKitTestCleanup()
{
}
Yum
From,
Jamie Dixon