MSTest的断言的xUnit等效值 [英] xUnit Equivalent of MSTest's Assert.Inconclusive

查看:81
本文介绍了MSTest的断言的xUnit等效值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

以下MSTest代码的xUnit等效项是什么:

What is the xUnit equivalent of the following MSTest code:

Assert.Inconclusive("Reason");

这将给出黄色的测试结果,而不是通常的绿色或红色.我想断言该测试由于某些条件而无法运行,并且应该在满足这些条件后重新运行该测试.

This gives a yellow test result instead of the usual green or red. I want to assert that the test could not be run due to certain conditions and that the test should be re-run after those conditions have been met.

推荐答案

一种方法是在事实理论 Skip 参数>属性.

One way is to use the Skip parameter within the Fact or Theory attributes.

[Fact(Skip = "It's not ready yet")]
public void ReplaceTokensUnfinished()
{
    var original = "";
    var expected = "";
    var tokenReplacer = new TokenReplacer();
    var result = tokenReplacer.ReplaceTokens(original, _tokens); // (_tokens is initialised in a constructor)
    Assert.Equal(result, expected);
}

运行时会给出以下结果:

Which gives this result when run:

这篇关于MSTest的断言的xUnit等效值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆