gpt4 book ai didi

grails - 多个 when/then 与 where for each other

转载 作者:行者123 更新时间:2023-11-28 19:52:12 26 4
gpt4 key购买 nike

我正在尝试使用 SpockGeb 编写功能测试。我想在一个测试方法中使用 多个 when/then block 和每个 block 的 where 。是否可以?或者我应该在所有时间/然后使用一个位置?

最佳答案

您将无法在每次交互中使用 where,它会提示使用情况。对于多个交互,您最终会得到一个 where。关注this as a sample :

def test() {
given:
def c
def d

when:
c = a + b

then:
c == result

when:
d = e - f

then:
d == res

where:
a | b |result | e |f |res
1 | 2 | 3 | 7 |5 |2
}

关于grails - 多个 when/then 与 where for each other,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20116836/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com