(t *testing.T)
| 1541 | } |
| 1542 | |
| 1543 | func Test_JoinHeaderValues(t *testing.T) { |
| 1544 | t.Parallel() |
| 1545 | require.Nil(t, joinHeaderValues(nil)) |
| 1546 | require.Equal(t, []byte("a"), joinHeaderValues([][]byte{[]byte("a")})) |
| 1547 | require.Equal(t, []byte("a,b"), joinHeaderValues([][]byte{[]byte("a"), []byte("b")})) |
| 1548 | } |
| 1549 | |
| 1550 | func Test_ParamsMatch_InvalidEscape(t *testing.T) { |
| 1551 | t.Parallel() |
nothing calls this directly
no test coverage detected