milvus/pkg/master/mock/grpc_client_test.go
rain c10cf9bf8f Update the collection proto and add the go files generated by proto
Signed-off-by: rain <boyan.wang@zilliz.com>
2020-09-10 19:55:03 +08:00

16 lines
242 B
Go

package mock
import (
"fmt"
"testing"
)
func TestFakeCreateCollectionByGRPC(t *testing.T) {
reason, segmentID := FakeCreateCollectionByGRPC()
if reason != "" {
t.Error(reason)
}
fmt.Println(collectionName)
fmt.Println(segmentID)
}