标签:字符 运行时 exce 框架 exception run attr lan span
具名参数:
什么是具名参数?
具名参数:SQL 按名称(以冒号开头)而不是按位置进行指定. 具名参数更易于维护, 也提升了可读性. 具名参数由框架类在运行时用占位符取代
then:
def exception = thrown(RuntimeException)
exception.message == "User with name ${user.name} already exists!"
注意groovy拥有一个称之为GStrings的特征,该特征可以在引用的字符串中插入参数,如${user.name}。
标签:字符 运行时 exce 框架 exception run attr lan span
原文地址:http://www.cnblogs.com/zhengtt/p/7407000.html