()
| 48 | } |
| 49 | |
| 50 | @Test |
| 51 | public void testSerialUTF8Decoder() throws Exception { |
| 52 | NullSerial s = new NullSerial(); |
| 53 | // https://github.com/arduino/Arduino/issues/9808 |
| 54 | String testdata = "012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789°0123456789"; |
| 55 | s.processSerialEvent(testdata.getBytes()); |
| 56 | assertEquals(s.output, testdata); |
| 57 | } |
| 58 | } |
nothing calls this directly
no test coverage detected