(t *testing.T)
| 257 | } |
| 258 | |
| 259 | func TestCoordinator_GracefulDisconnect(t *testing.T) { |
| 260 | t.Parallel() |
| 261 | logger := testutil.Logger(t) |
| 262 | coordinator := tailnet.NewCoordinator(logger) |
| 263 | ctx := testutil.Context(t, testutil.WaitShort) |
| 264 | test.GracefulDisconnectTest(ctx, t, coordinator) |
| 265 | } |
| 266 | |
| 267 | func TestCoordinator_Lost(t *testing.T) { |
| 268 | t.Parallel() |
nothing calls this directly
no test coverage detected