MCPcopy Create free account
hub / github.com/grpc/grpc-java / mergeExpands

Method mergeExpands

api/src/test/java/io/grpc/MetadataTest.java:252–265  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

250 }
251
252 @Test
253 public void mergeExpands() {
254 Fish lance = new Fish(LANCE);
255 Metadata h1 = new Metadata();
256 h1.put(KEY, lance);
257
258 Metadata h2 = new Metadata();
259 h2.put(KEY, lance);
260 h2.put(KEY, lance);
261 h2.put(KEY, lance);
262 h2.put(KEY, lance);
263
264 h1.merge(h2);
265 }
266
267 @Test
268 public void shortBinaryKeyName() {

Callers

nothing calls this directly

Calls 2

putMethod · 0.95
mergeMethod · 0.95

Tested by

no test coverage detected