码迷,mamicode.com
首页 > 其他好文 > 详细

golang 测试用例编写

时间:2021-05-04 16:32:30      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:快速测试   out   block   阻塞   内存   并行   file   前言   cpu   

前言

go的测试用例一般分两种

  1. 单元测试:主要测试代码可运行正确行,相当于运行一遍编写代码
  2. 基准测试:主要是对性能的测试

gotest 的变量

  • test.short : 一个快速测试的标记,在测试用例中可以使用 testing.Short() 来绕开一些测试
  • test.outputdir : 输出目录
  • test.coverprofile : 测试覆盖率参数,指定输出文件
  • test.run : 指定正则来运行某个 / 某些测试用例
  • test.memprofile : 内存分析参数,指定输出文件
  • test.memprofilerate : 内存分析参数,内存分析的抽样率
  • test.cpuprofile : cpu 分析输出参数,为空则不做 cpu 分析
  • test.blockprofile : 阻塞事件的分析参数,指定输出文件
  • test.blockprofilerate : 阻塞事件的分析参数,指定抽样频率
  • test.timeout : 超时时间
  • test.cpu : 指定 cpu 数量
  • test.parallel : 指定运行测试用例的并行数

单元测试

golang 测试用例编写

标签:快速测试   out   block   阻塞   内存   并行   file   前言   cpu   

原文地址:https://www.cnblogs.com/shuiche/p/14726869.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!