ThreadDao 5f71bb2a41
test: Split gosdk cases into different packages and add rg cases (#39694)
issue: #33419

---------

Signed-off-by: ThreadDao <yufen.zong@zilliz.com>
2025-02-26 16:27:59 +08:00

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))
}