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