mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
13 lines
174 B
Go
13 lines
174 B
Go
package testcases
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/milvus-io/milvus/tests/go_client/testcases/helper"
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
os.Exit(helper.RunTests(m))
|
|
}
|