(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestUpgradeManager_install(t *testing.T) { |
| 12 | if !testutils.IsSingleTesting() { |
| 13 | return |
| 14 | } |
| 15 | |
| 16 | err := NewUpgradeManager().install() |
| 17 | if err != nil { |
| 18 | t.Fatal(err) |
| 19 | } |
| 20 | t.Log("ok") |
| 21 | } |
nothing calls this directly
no test coverage detected