标签: julia assert assertions assertion
在Python中,我可以向断言添加自定义消息以帮助进行代码开发:
assert False, "Expected true"
我如何在朱莉娅身上做同样的事?
答案 0 :(得分:0)
来自documentation:
@assert false "Expected true"
@assert cond [text] 如果AssertionError为cond,则抛出false。编写断言的首选语法。断言失败时,可选择显示消息text。
@assert cond [text]
如果AssertionError为cond,则抛出false。编写断言的首选语法。断言失败时,可选择显示消息text。
AssertionError
cond
false
text