()
| 283 | } |
| 284 | |
| 285 | public void serialize() { |
| 286 | try (Path p = new PathBuilder().lineTo(40, 40).lineTo(40, 0).lineTo(0, 40).lineTo(0, 0).closePath().build();) { |
| 287 | Path p2 = Path.makeFromBytes(p.serializeToBytes()); |
| 288 | assertEquals(p, p2); |
| 289 | } |
| 290 | } |
| 291 | |
| 292 | public void fillWithPaint() throws Exception { |
| 293 | try (var paint = new Paint(); |
no test coverage detected