我正在寻找一个回调后测试执行来检查警报标志。我在这里没有看到任何列表,所以我检查了测试界面,只看到了看起来像流级别回调的内容:
# This will be called at the end of every flow or sub-flow (at the end of every
# Flow.create block).
# Any options passed to Flow.create will be passed in here.
# The options will contain top_level: true, whenever this is called at the end of a
# top-level flow file.
def shutdown(options = {})
end
我们需要能够在每次测试后检查警报标志,但仍将公共组 ID 应用于测试列表,如下所示:
group "func tests", id: :func do
[:minvdd, :maxvdd].each do |cond|
func :bin1_1200, ip: :cpu, testmode: :speed, cond: cond
end
end
以下是 V93K 警报流标志的示例:
谢谢!
