(t *testing.T)
| 748 | } |
| 749 | |
| 750 | func TestDefaultHTTPTransport(t *testing.T) { |
| 751 | assert.NotPanics(t, func() { |
| 752 | transport := DefaultHTTPTransport() |
| 753 | assert.NotNil(t, transport, "Returned DefaultHTTPTransport was unexpectedly nil") |
| 754 | }) |
| 755 | } |
| 756 | |
| 757 | func TestIsDeltaError(t *testing.T) { |
| 758 | tests := []struct { |
nothing calls this directly
no test coverage detected