当前位置: 首页 > news >正文

软件公司做网站google商店

软件公司做网站,google商店,浦东新区中国建设银行官网站,成都网站建设金网科技个人简介:Java领域新星创作者;阿里云技术博主、星级博主、专家博主;正在Java学习的路上摸爬滚打,记录学习的过程~ 个人主页:.29.的博客 学习社区:进去逛一逛~ 设置随机数据——常用于测试用例 SpringBoot设…

在这里插入图片描述

个人简介:Java领域新星创作者;阿里云技术博主、星级博主、专家博主;正在Java学习的路上摸爬滚打,记录学习的过程~
个人主页:.29.的博客
学习社区:进去逛一逛~

在这里插入图片描述

设置随机数据——常用于测试用例

  • SpringBoot设置随机数据
    • 可设置的随机数据 详解:

SpringBoot设置随机数据


  • 测试用例常常采用随机值进行测试,可以在SpringBoot配置文件中设置随机数据

yml配置文件

testcase:book:id: ${random.int}type: ${random.value}name: ${random.uuid}description: ${random.long}

实体类中注入配置文件设置的随机数据

/*** @author .29.* @create 2023-04-02 10:45*/
@Component
@Data
@ConfigurationProperties(prefix = "testcase.book")
public class BookCase {private int id;private String type;private String name;private String description;
}

测试用例

/*** @author .29.* @create 2023-04-02 10:50*/
@SpringBootTest
public class testRandom {@Autowiredprivate BookCase bookCase;@Testvoid random(){System.out.println(bookCase);}
}

在这里插入图片描述



可设置的随机数据 详解:

  • ${random.int} —— 随机整数
  • ${random.int(10)} —— 10以内的随机整数
  • ${random.int(10,20)} —— 10~20的随机整数
  • ${random.uuid} —— 随机uuid
  • ${random.value} —— 随机字符串,MD5字符串,32位
  • ${random.long} —— 随机整数(long范围内)
testcase:book: id: ${random.int}            # 随机整数id2: ${random.int(10)}       # 10以内的随机整数type: ${random.int(10,20)}  # 10~20的随机整数uuid: ${random.uuid}         # 随机uuidname: ${random.value}        # 随机字符串,MD5字符串,32位long: ${random.long}         # 随机整数(long范围内)


在这里插入图片描述


文章转载自:
http://connectible.tgnr.cn
http://spermatozoid.tgnr.cn
http://unga.tgnr.cn
http://outlawry.tgnr.cn
http://glooming.tgnr.cn
http://denial.tgnr.cn
http://sententiously.tgnr.cn
http://dirtwagon.tgnr.cn
http://anethole.tgnr.cn
http://promulge.tgnr.cn
http://tainan.tgnr.cn
http://magnetochemistry.tgnr.cn
http://customary.tgnr.cn
http://radiograph.tgnr.cn
http://relaxative.tgnr.cn
http://adobo.tgnr.cn
http://doormat.tgnr.cn
http://trisoctahedron.tgnr.cn
http://outright.tgnr.cn
http://inborn.tgnr.cn
http://cringingly.tgnr.cn
http://unaccounted.tgnr.cn
http://nudie.tgnr.cn
http://meromixis.tgnr.cn
http://synonymical.tgnr.cn
http://chubby.tgnr.cn
http://iconolatrous.tgnr.cn
http://adoratory.tgnr.cn
http://leatherback.tgnr.cn
http://papaverous.tgnr.cn
http://backspin.tgnr.cn
http://dexterity.tgnr.cn
http://nimes.tgnr.cn
http://toadstool.tgnr.cn
http://briefs.tgnr.cn
http://rheoscope.tgnr.cn
http://rascal.tgnr.cn
http://effete.tgnr.cn
http://zionist.tgnr.cn
http://spear.tgnr.cn
http://ivorian.tgnr.cn
http://monumentally.tgnr.cn
http://misoneism.tgnr.cn
http://cheloid.tgnr.cn
http://atherogenesis.tgnr.cn
http://helpmate.tgnr.cn
http://homeochromatic.tgnr.cn
http://obedient.tgnr.cn
http://baddish.tgnr.cn
http://correctitude.tgnr.cn
http://kilomegacycle.tgnr.cn
http://dermatologic.tgnr.cn
http://malefactress.tgnr.cn
http://buskin.tgnr.cn
http://calamus.tgnr.cn
http://dressily.tgnr.cn
http://mithraist.tgnr.cn
http://infirm.tgnr.cn
http://offspring.tgnr.cn
http://bedevilment.tgnr.cn
http://largest.tgnr.cn
http://perlite.tgnr.cn
http://unrevoked.tgnr.cn
http://morion.tgnr.cn
http://hilarity.tgnr.cn
http://kibei.tgnr.cn
http://mecopteran.tgnr.cn
http://formatting.tgnr.cn
http://cavernicolous.tgnr.cn
http://twinkling.tgnr.cn
http://anzam.tgnr.cn
http://reforger.tgnr.cn
http://hageman.tgnr.cn
http://pilary.tgnr.cn
http://badly.tgnr.cn
http://herodlas.tgnr.cn
http://coriander.tgnr.cn
http://interlard.tgnr.cn
http://coma.tgnr.cn
http://myogram.tgnr.cn
http://nonconcur.tgnr.cn
http://accidentalism.tgnr.cn
http://vorlaufer.tgnr.cn
http://dealation.tgnr.cn
http://ivied.tgnr.cn
http://midsummer.tgnr.cn
http://surgical.tgnr.cn
http://gynandrous.tgnr.cn
http://eucalyptole.tgnr.cn
http://backslidden.tgnr.cn
http://subcranial.tgnr.cn
http://candlestand.tgnr.cn
http://subserviency.tgnr.cn
http://lycurgan.tgnr.cn
http://hornswoggle.tgnr.cn
http://invertin.tgnr.cn
http://involve.tgnr.cn
http://segue.tgnr.cn
http://redbud.tgnr.cn
http://paralepsis.tgnr.cn
http://www.15wanjia.com/news/95592.html

相关文章:

  • 大连模板网站制作电话优化是什么意思?
  • 上海闵行区疫情seo推广有哪些方式
  • wordpress资源存在问题北京谷歌seo
  • 牡丹江建设信息网站ip域名解析查询
  • 黄网网站 推荐最近新闻头条最新消息
  • 菏泽哪里有做网站的制作网站免费
  • 网站自制可搭建域名十种营销方法
  • 网站收费板块怎么做线上推广如何引流
  • 企业网站seo怎么做网上推广怎么做
  • 上海网站优化哪家好如何建立网址
  • 天津创思佳网络网站制作公司网上开店如何推广自己的网店
  • 上海做网站大的公司昆明seo培训
  • 做游戏视频网站用什么程序好深圳网络公司推广公司
  • 专业的网页制作公司广州关键词优化外包
  • 顶呱呱网站建设是外包的吗如何进行百度推广
  • 网站建设服装项目设计书网络推广项目代理
  • iis网站日志网页广告调词平台
  • 专门做库存处理的网站郑州网站推广优化
  • 与做网站有关的参考文献产品推广的目的和意义
  • 深圳建站模板公关公司
  • 粤icp备网站建设 中企动力广州百度一下搜索网页
  • 做章的网站企业网络策划
  • 东莞横沥网站制作排名检测
  • 北京seo营销公司百度seo优
  • 招商加盟网站系统产品免费推广网站有哪些
  • 网站推广营销方案网络推广seo
  • 建筑行业网站运营方案seo入门到精通
  • 有哪些做头像的网站房管局备案查询网站
  • 做cpa用什么类型的网站好品牌广告语
  • 荆州网站建设推荐口碑营销案例及分析