I am trying to add a message when I try to skip a test case my condition statement. I am able to skip without adding a message. But I would like to add a message for the reason to skip it. But Nunit never displays the message.
if (...)
{
Assert.Ignore("Data not found.");
}
What should be the solution to add the message while skipping my test case?
There are a lot of ways to alter the results of the test, here are some of many. And ways you can view different test result statuses