How to get test result status from MSTest?

旧巷老猫 提交于 2019-12-21 20:09:05

问题


In NUnit, I can get the test result from context.Result.State. If its NUnit.Framework.TestState.Success, then I know the test passed.

In MSTest, how do I get that info?

I saw context.Properties.Keys, but none of them speak of the status of the test result.


回答1:


Use the TestContext.CurrentTestOutcome property in the TestCleanup method:

[TestClass]
public class UnitTest
{
    private TestContext TestContext { get; set; }

    [TestCleanup]
    public void TestCleanup()
    {
        if (TestContext.CurrentTestOutcome == UnitTestOutcome.Passed)
            //do something
    } 

    [TestMethod]
    public void TestMethod()
    {
    }
}


来源:https://stackoverflow.com/questions/13201566/how-to-get-test-result-status-from-mstest

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!