()
| 117 | Metadata.Key.of("immutable-bin", IMMUTABLE_FISH_MARSHALLER); |
| 118 | |
| 119 | @Test |
| 120 | public void noPseudoHeaders() { |
| 121 | IllegalArgumentException e = assertThrows(IllegalArgumentException.class, |
| 122 | () -> Metadata.Key.of(":test-bin", FISH_MARSHALLER)); |
| 123 | assertThat(e).hasMessageThat().isEqualTo("Invalid character ':' in key name ':test-bin'"); |
| 124 | } |
| 125 | |
| 126 | @Test |
| 127 | public void testMutations() { |
nothing calls this directly
no test coverage detected