()
| 12 | |
| 13 | public class ImageTest implements Executable { |
| 14 | @Override |
| 15 | public void execute() throws Exception { |
| 16 | TestRunner.testMethod(this, "base"); |
| 17 | TestRunner.testMethod(this, "makeSubset"); |
| 18 | TestRunner.testMethod(this, "refCntToStringAfterClose"); |
| 19 | } |
| 20 | |
| 21 | public void base() throws Exception { |
| 22 | try (var surface = Surface.makeRaster(ImageInfo.makeN32Premul(100, 100)); |
nothing calls this directly
no test coverage detected