()
| 122 | } |
| 123 | |
| 124 | @Test |
| 125 | public void discard_empty() { |
| 126 | Attributes newAttrs = Attributes.EMPTY.toBuilder().discard(YOLO_KEY).build(); |
| 127 | |
| 128 | assertNull(newAttrs.get(YOLO_KEY)); |
| 129 | assertThat(newAttrs.keysForTest()).doesNotContain(YOLO_KEY); |
| 130 | } |
| 131 | } |
nothing calls this directly
no test coverage detected