标签: groovy
this page上的示例仅显示没有括号的Groovy断言。
assert a != null, 'First parameter must not be null'
如果我想包含括号,这会是什么样子?我认为这是与Perl的die()函数最接近的等价物(打印错误消息并在一个语句中退出)?
答案 0 :(得分:0)
答案是:
assert(a != null), "First parameter must not be null"