Wednesday, June 27, 2012

How to disable unit test and removed from the test run?

The unit test can be disabled by simply adding the following Ignore attribute at the top of the test method and will automatically removed from test run.

[Ignore]
[TestMethod]
public void TestMethod()
-----

No comments:

Post a Comment