如何将SUnit(或phexample)中的单元测试标记为预期失败?
答案 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