mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-04 18:02:08 +08:00
16 lines
214 B
Go
16 lines
214 B
Go
|
|
package mock
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestFakeCreateCollectionByGRPC(t *testing.T) {
|
|
reason, segmentID := FakeCreateCollectionByGRPC()
|
|
if reason != "" {
|
|
t.Error(reason)
|
|
}
|
|
fmt.Println(segmentID)
|
|
}
|