milvus/pkg/common/string_list_test.go
jaime c9d0c157ec
Move some modules from internal to public package (#22572)
Signed-off-by: jaime <yun.zhang@zilliz.com>
2023-04-06 19:14:32 +08:00

40 lines
533 B
Go

package common
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestCloneStringList(t *testing.T) {
type args struct {
l StringList
}
tests := []struct {
name string
args args
}{
{
args: args{
l: nil,
},
},
{
args: args{
l: []string{"s1", "s2"},
},
},
{
args: args{
l: []string{"dup", "dup", "dup"},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := CloneStringList(tt.args.l)
assert.True(t, got.Equal(tt.args.l))
})
}
}