()
| 69 | } |
| 70 | |
| 71 | @Test |
| 72 | public void metadataEncode_percent() { |
| 73 | byte[] b = Status.MESSAGE_KEY.toBytes("my favorite character is %"); |
| 74 | assertEquals("my favorite character is %25", new String(b, ascii)); |
| 75 | } |
| 76 | |
| 77 | @Test |
| 78 | public void metadataEncode_surrogatePair() { |
nothing calls this directly
no test coverage detected