--- old/test/java/awt/image/multiresolution/BaseMultiResolutionImageTest.java 2016-03-11 13:42:45.387932909 +0300 +++ new/test/java/awt/image/multiresolution/BaseMultiResolutionImageTest.java 2016-03-11 13:42:45.247932909 +0300 @@ -191,6 +191,17 @@ if (!passed) { throw new RuntimeException("Resolution variants list is modifiable!"); } + + passed = false; + try { + mrImage.getGraphics(); + } catch (UnsupportedOperationException e) { + passed = true; + } + + if (!passed) { + throw new RuntimeException("getGraphics() method shouldn't be supported!"); + } } private static int getSize(int i) {