测试用例数据设定
测试用例数据通常采用随机值进行测试,使用SpringBoot提供的随机值为其赋值
testcase:
book:
id: ${random.int} # 随机整数
id2: ${random.int(10)} # 10以内随机数
type: ${random.int(5,10)} # 10到20随机数
name: ${random.value} # 随机字符串,MD5字符串,32位
uuid: ${random.uuid} # 随机uuid
publishTime: ${random.long} # 随机整数(long范围)