| Issue 281: | Assert.Ignore message is not included in test reports | |
| 1 person starred this issue and may be notified of changes. | Back to list |
Sign in to add a comment
|
What steps will reproduce the problem?
Create simple test
[Test]
public void Ignore()
{
Assert.Ignore("This test was ignored at {0}",
DateTime.Now.ToShortDateString());
}
Run test
What is the expected output? What do you see instead?
Test runner ignores the test and marks it ignored, but the accompanying
message is not displayed. The message should be displayed somewhere in the
test report but it isn't at all.
|
||||||||||
|
|
|||||||||||