Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到了一些典型的茉莉花代码,例如:
expect(actual).someMatcher(expected);
有没有办法确定这种匹配是成功还是失败(以编程方式)?根据结果,我可能想在之后进行某些操作。例如,如果失败,则将实际值写入磁盘。
使用匹配器的返回值似乎不起作用。它总是返回未定义的。
最干净的方法是写你自己的记者。
或者,在规范中,this是规范。将返回结果,this.results()您可以通过查看items_.this.results()
this
this.results()
items_