调试测试用例时需要注释多行。单行我可以使用 # 进行评论,但我正在寻找块评论。
例子:
Gherkin 语法不支持块注释,但这是大多数团队所做的。
使用 Cucumber IDE 集成 - 在 Eclipse、IntelliJ、Visual Studio Code 等中受支持
例如,如果您使用 Eclipse,
CTRL
+ /
将注释所有选定的行。
在Gherkin中,
""" """
可以对代码块进行注释。
但是对于空手道来说,这只是一个障碍。
以下部分在场景之后立即被视为评论。
Scenario: Testing commenting multiple lines
""" some block comment
still block comment
""" end of block comment
Given url 'https://testurl.com'
When method GET
Then status 200
And print response
And print "This is the first line"
#----> You can only commnent this way
# And print "This is the second line"
# And print "This is the Third line"
# And print "This is the Forth line"
# And print "This is the fifth line"
And print "This is the sixth line"
对此有广泛的讨论,我们可以通过配置IDE来实现更接近的解决方案。在这里查看解决方案。