GetTestingMySQLURL returns MySQL connection URL
()
| 80 | |
| 81 | // GetTestingMySQLURL returns MySQL connection URL |
| 82 | func GetTestingMySQLURL() string { |
| 83 | return fmt.Sprintf("mysql://%s", GetTestingMySQLConfig().FormatDSN()) |
| 84 | } |
| 85 | |
| 86 | func createTestingMySQLDB() *DB { |
| 87 | db, e := OpenAndConnectDB(GetTestingMySQLURL()) |