C# – Add [Ignore] to disable a unit test
To disable a test temporarily, you can add the [Ignore] attribute to the test method, like this: When you add the [Ignore] attribute, the test will be ignored by the test runner. It will show up in Test Explorer with a warning icon and will count as Skipped. Note: This isn’t the same as the … Read more