(t *testing.T)
| 44 | } |
| 45 | |
| 46 | func TestDatabaseTestingHiveURL(t *testing.T) { |
| 47 | a := assert.New(t) |
| 48 | if db := GetTestingDBSingleton(); db.DriverName == "hive" { |
| 49 | a.Equal(GetTestingHiveURL(), db.URL()) |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | func TestDatabaseTestingMaxComputeURL(t *testing.T) { |
| 54 | a := assert.New(t) |
nothing calls this directly
no test coverage detected