赞
踩
在测试类中,Share标记的变量可以在不同的测试方法中使用。
记录已经知道的 bug
标记让方法执行失败的测试用例
@IgnoreIf({ System.getProperty(“os.name”).contains(“windows”) })
def “I’ll run everywhere but on Windows”() { … }
@Requires({ os.windows })
def “I’ll only run on Windows”() { … }
@Retry(count = 5)
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。