我正在通过修改我为使用切片创建的库来玩转泛型。我有一个Difference
函数,它接受切片并返回仅在其中一个切片中找到的唯一元素列表。
我修改了函数以使用泛型,并且我正在尝试使用不同类型(例如字符串和整数)编写单元测试,但在联合类型方面遇到了问题。这是我现在所拥有的:
type testDifferenceInput[T comparable] [][]T
type testDifferenceOutput[T comparable] []T
type testDifference[T comparable] struct {
input testDifferenceInput[T]
output testDifferenceOutput[T]
}
func TestDifference(t *testing.T) {
for i, tt := range []testDifference[int] {
testDifference[int]{
input: testDifferenceInput[int]{
[]int{1, 2, 3, 3, 4},
[]int{1, 2, 5},
[]int{1, 3, 6},
},
output: []int{4, 5, 6},
},
} {
t.Run(fmt.Sprintf("%d", i), func(t *testing.T) {
actual := Difference(tt.input...)
if !isEqual(actual, tt.output) {
t.Errorf("expected: %v %T, received: %v %T", tt.output, tt.output, actual, actual)
}
})
}
}
我希望能够在同一个表测试中同时测试 int 或 string。这是我尝试过的:
type intOrString interface {
int | string
}
type testDifferenceInput[T comparable] [][]T
type testDifferenceOutput[T comparable] []T
type testDifference[T comparable] struct {
input testDifferenceInput[T]
output testDifferenceOutput[T]
}
func TestDifference(t *testing.T) {
for i, tt := range []testDifference[intOrString] {
testDifference[int]{
input: testDifferenceInput[int]{
[]int{1, 2, 3, 3, 4},
[]int{1, 2, 5},
[]int{1, 3, 6},
},
output: []int{4, 5, 6},
},
testDifference[string]{
input: testDifferenceInput[string]{
[]string{"1", "2", "3", "3", "4"},
[]string{"1", "2", "5"},
[]string{"1", "3", "6"},
},
output: []string{"4", "5", "6"},
},
}
茅侃侃
人到中年有点甜
相关分类