()
| 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() { |