mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
c9d0c157ec
Signed-off-by: jaime <yun.zhang@zilliz.com>
40 lines
533 B
Go
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))
|
|
})
|
|
}
|
|
}
|