()
| 10 | |
| 11 | public class BitmapTest implements Executable { |
| 12 | @Override |
| 13 | public void execute() throws Exception { |
| 14 | TestRunner.testMethod(this, "base"); |
| 15 | TestRunner.testMethod(this, "swap"); |
| 16 | TestRunner.testMethod(this, "getSurfaceNull"); |
| 17 | } |
| 18 | |
| 19 | public void base() throws Exception { |
| 20 | try (var bitmap = new Bitmap()) { |
nothing calls this directly
no test coverage detected