如何在SUnit中标记预期的失败?

时间:2010-10-20 09:54:13

标签: unit-testing smalltalk pharo

如何将SUnit(或phexample)中的单元测试标记为预期失败?

1 个答案:

答案 0 :(得分:4)

在测试中覆盖expectedFailures。 WeakSetTest中有一个例子:

expectedFailures
    "such tests work in Squeak"
    ^ #(testDoAfter testIncludes )

<强>更新

As of Pharo 1.2,您还可以在测试方法中添加一个pragma:

testDontWork
    <expectedFailure>
    self assert: 3 equals: 4