Files
ProjectOctopus/agent-go/executor/MySqlFunction_test.go
2023-11-28 11:30:44 +08:00

14 lines
207 B
Go

package executor
import "testing"
func TestMySqlConnection(t *testing.T) {
connection, strings := MySqlConnection("10.250.0.126", "33306")
if !connection {
t.Error(strings)
}
println("success!")
}