(t *testing.T)
| 182 | } |
| 183 | |
| 184 | func TestCheckingOfKeyOwnership(t *testing.T) { |
| 185 | for _, randomize := range []bool{false, true} { |
| 186 | t.Run("TestCheckingOfKeyOwnership/randomizeInstanceStates="+strconv.FormatBool(randomize), func(t *testing.T) { |
| 187 | testCheckingOfKeyOwnership(t, randomize) |
| 188 | }) |
| 189 | } |
| 190 | } |
| 191 | |
| 192 | func testCheckingOfKeyOwnership(t *testing.T, randomizeInstanceStates bool) { |
| 193 | const instancesPerZone = 20 |
nothing calls this directly
no test coverage detected