(t *testing.T)
| 3049 | } |
| 3050 | |
| 3051 | func TestConnectionError_Unwrap(t *testing.T) { |
| 3052 | err := connectionErrorf(false, os.ErrNotExist, "unwrap me") |
| 3053 | if !errors.Is(err, os.ErrNotExist) { |
| 3054 | t.Error("ConnectionError does not unwrap") |
| 3055 | } |
| 3056 | } |
| 3057 | |
| 3058 | // Test that in the event of a graceful client transport shutdown, i.e., |
| 3059 | // clientTransport.Close(), client sends a goaway to the server with the correct |
nothing calls this directly
no test coverage detected