I’m using NUnit and TeamCity and I have written some system tests with descriptions.
/// <summary>
/// Should send the password reminder and...
/// </summary>
[Test]
public void ShouldSendPasswordReminder()
{
}
On Teamcity, after a test has run, it displays only the Status, Test Method Name, Test Class Name and Duration; however, I’d like to have the “Description” of the test to be displayed on the TeamCity WebUI as well.
How would that be possible?
Thanks,
I would consider making the name of the unit test method self descriptive, as described by Roy Osherove:
http://osherove.com/blog/2005/4/3/naming-standards-for-unit-tests.html
This is also described in his book,The Art of Unit Testing, here:
http://artofunittesting.com/