编码用户界面 - 断言“继续失败”

时间:2013-07-29 12:57:01

标签: coded-ui-tests specflow

我正在使用SpecFlow和Coded UI为WPF应用程序创建自动化测试。

我在“Then”步骤中有多个断言,其中一些失败。当断言失败时,测试用例失败并且执行停止。我希望我的测试用例继续执行到最后一步,如果执行过程中出现任何失败的断言,我想要使整个测试用例失败。

我发现只有部分解决方案:

try
{
    Assert.IsTrue(condition)
}
catch(AssertFailedException ex)
{
    Console.WriteLine("Assert failed, continuing the run");
}

在这种情况下,执行一直持续到最后,但测试用例被标记为已通过。

谢谢!

2 个答案:

答案 0 :(得分:3)

List Exceptions。每当遇到异常时,抓住它并将其放入列表中。

创建一个包含属性AfterScenario的方法,并查看该列表是否包含异常。如果为true,则使用带有字符串的异常列表的消息断言失败。现在,您不会丢失有价值的异常信息,并且由于AfterScenario属性,最终会检查异常。

答案 1 :(得分:1)

一种方法是添加声明bool thisTestFailed并将其初始化为false。在catch块内添加语句thisTestFailed = true;,然后在测试结束时添加代码,例如:

if ( thisTestFailed ) {
    Assert.Fail("A suitable test failed message");
}

另一种方法是将一系列Assert...语句转换为一系列if测试,后跟一个Assert。有几种方法可以做到这一点。一种方法是:

bool thisTestFailed = false;
if ( ... the first assertion ... ) { thisTestFailed = true; }
if ( ... another assertion ... ) { thisTestFailed = true; }
if ( ... and another assertion ... ) { thisTestFailed = true; }
if ( thisTestFailed ) {
    Assert.Fail("A suitable test failed message");
}