Test displays
()
| 42 | * Test displays |
| 43 | */ |
| 44 | @Test |
| 45 | void testDisplay() { |
| 46 | SystemInfo si = new SystemInfo(); |
| 47 | List<Display> displays = si.getHardware().getDisplays(); |
| 48 | for (Display d : displays) { |
| 49 | assertThat("EDID Byte length should be at least 128", d.getEdid().length, is(greaterThanOrEqualTo(128))); |
| 50 | } |
| 51 | } |
| 52 | } |
nothing calls this directly
no test coverage detected