go 框架中单元测试设计准则:1. 单元测试应致力于一个函数;2. 应用表驱动检测;3. 对副作用进行模拟;4. 撰写可读并可维修的检测;5. 应用普及率工具。实战案例:检测一个查找字符串数组中最高值的函数,同时符合规则。 内容来自samhan
内容来自samhan
在 Go 框架中开展单元测试的设计准则 内容来自samhan666
1. 单元测试应粒度小且专注
单元测试应只检测一个实际函数或方法。这将使检测易于维护和调试。 zvvq.cn
2. 应用表驱动检测
表驱动检测允许您给予一组键入和预期导出,并对每个键入运行测试。这有利于捕捉边沿状况并简化检测维护。 内容来自zvvq,别采集哟
import ( 本文来自zvvq
"testing" zvvq.cn
"reflect" zvvq.cn
)
zvvq
func TestAdd(t *testing.T) {
tests := []struct { zvvq.cn
input1, input2 int 内容来自samhan666
expected int
}{
内容来自zvvq,别采集哟
{1, 2, 3}, zvvq
{3, 4, 7},
{-1, -2, -3}, 内容来自samhan
} zvvq.cn
for _, test := range tests { zvvq.cn
actual := Add(test.input1, test.input2)
copyright zvvq
if actual != test.expected { 内容来自zvvq,别采集哟
t.Errorf("Add(%d, %d): expected %d, got %d", test.input1, test.input2, test.expected, actual)
内容来自samhan
}
}
内容来自zvvq,别采集哟
} 内容来自samhan
3. 对副作用进行模拟 内容来自zvvq,别采集哟
单元测试应不同于外在因素,比如数据库或网络启用。应用模拟或存根来防护这种依赖项,以保证检测准确可靠。 内容来自samhan666
4. 撰写可读并可维修的检测
zvvq
检测应清晰易懂,便于别的开发者能够轻松认知和维护。应用有价值的变量和函数名称,并撰写注解以解释检测的用意。
5. 应用普及率工具
普及率工具能够帮助你考量检测对代码库的覆盖水平。这可以识别未涵盖的编码途径,并促使您撰写更专业的检测。
zvvq好,好zvvq
实战案例:检测一个简单的函数 内容来自zvvq
考虑下列函数,用以查找字符串数组中的最大值:
func Max(arr []string) string {
本文来自zvvq
if len(arr) == 0 {
return "" copyright zvvq
} zvvq.cn
max := arr[0] zvvq好,好zvvq
for _, s := range arr {
zvvq好,好zvvq
if s > max { 内容来自samhan666
max = s
zvvq.cn
}
} copyright zvvq
return max copyright zvvq
} 内容来自samhan
我们可以使用下列单元测试来检测此函数: zvvq好,好zvvq
import ( 内容来自zvvq
"testing" 本文来自zvvq
"reflect"
"strings"
)
copyright zvvq
func TestMax(t *testing.T) { zvvq
tests := []struct {
input []string
expected string copyright zvvq
}{
内容来自samhan
{[]string{"a", "b", "c"}, "c"},
{[]string{"z", "y", "x"}, "z"},
{[]string{"1", "2", "3"}, "3"},
zvvq
{[]string{}, ""}, 内容来自zvvq
} 内容来自zvvq
for _, test := range tests {
zvvq
actual := Max(test.input) 本文来自zvvq
if actual != test.expected { 内容来自samhan666
t.Errorf("Max(%s): expected %s, got %s", strings.Join(test.input, ", "), test.expected, actual) 内容来自zvvq,别采集哟
}
内容来自zvvq
} 内容来自samhan
}
zvvq.cn
这个测试同时符合设计准则: 内容来自zvvq
它检测单独函数(Max)它使用表推动检测来包含各种键入它使用模拟来防护对输入数组的依赖项它清楚易懂以上就是在golang框架中开展单元测试时要遵循什么设计准则?的详细内容,大量请关注其他类似文章!