golang单测

发布时间:2023年12月20日

goland自动生成

  1. 鼠标移动到函数名处右击鼠标
  2. 点击:生成
  3. 点击:函数测试
func TestGetFieldIds(t *testing.T) {
    type args struct {
       fieldIdsStr string
    }
    tests := []struct {
       name       string
       args       args
       wantResult []uint
    }{
       // TODO: Add test cases.
    }
    for _, tt := range tests {
       t.Run(tt.name, func(t *testing.T) {
          if gotResult := GetFieldIds(tt.args.fieldIdsStr); !reflect.DeepEqual(gotResult, tt.wantResult) {
             t.Errorf("GetFieldIds() = %v, want %v", gotResult, tt.wantResult)
          }
       })
    }
}

由于goland自动生成的测试函数使用了反射,但是大多数情况下是不使用的,使用断言这种方式,所以就用了下面的Testify。

Testify

Testify是一个功能强大且易于使用的测试工具包,提供了丰富的断言方法和辅助函数。它扩展了Go的内置testing包,使测试编写更简洁、可读性更高。
导入库:go get github.com/stretchr/testify/assert

func TestGetFieldIds(t *testing.T) {
    testCases := []struct {
       input    string
       expected []uint
    }{
       {input: "1,2,3,4,5", expected: []uint{1, 2, 3, 4, 5}},
       {input: "10,20,30", expected: []uint{10, 20, 30}},
       {input: "100,200,300,400", expected: []uint{100, 200, 300, 400}},
       // Add more test cases as needed
    }
    for _, tc := range testCases {
       result := GetFieldIds(tc.input)
       assert.Equal(t, tc.expected, result, "GetFieldIds result should match expected")
    }
}

文章来源:https://blog.csdn.net/qq_51537858/article/details/135112731
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。