mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +08:00
18 lines
238 B
Go
18 lines
238 B
Go
|
|
package mock
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestFakeCreateCollectionByGRPC(t *testing.T) {
|
|
t.Skip("to fix test")
|
|
|
|
reason, segmentID := FakeCreateCollectionByGRPC()
|
|
if reason != "" {
|
|
t.Error(reason)
|
|
}
|
|
fmt.Println(segmentID)
|
|
}
|