()
| 19 | |
| 20 | public class ColorSpaceTest implements Executable { |
| 21 | @Override |
| 22 | public void execute() throws Exception { |
| 23 | testICC(); |
| 24 | testExtendedApi(); |
| 25 | } |
| 26 | |
| 27 | private void testICC() throws IOException { |
| 28 | ColorSpace cs1 = ColorSpace.makeFromICCProfile(new byte[0]); |
nothing calls this directly
no test coverage detected