Mid Testing

How do you ignore tests conditionally in NUnit?

Use [Ignore("Reason")] to skip tests unconditionally, or [Category] combined with

test runner filters. For conditional ignoring, you can use Assume statements or custom logic

inside tests.

More from C# Programming Tutorial

All questions for this course