ai-css/tools/import_sql_test.go
2026-01-28 22:42:06 +08:00

15 lines
253 B
Go

package tools
import "testing"
func TestImportSql(t *testing.T) {
tool:=&ImportSqlTool{
SqlPath: "../import.sql",
Username: "go-fly",
Password: "go-fly",
Server: "127.0.0.1",
Port: "3306",
Database: "go-fly",
}
tool.ImportSql()
}