mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-05 02:12:48 +08:00
16 lines
242 B
Go
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)
|
|
}
|