| 6 | import io.github.humbleui.skija.test.runner.*; |
| 7 | |
| 8 | public class VulkanTest implements Executable { |
| 9 | @Override |
| 10 | public void execute() throws Exception { |
| 11 | TestRunner.testMethod(this, "testVulkanContext"); |
| 12 | } |
| 13 | |
| 14 | public void testVulkanContext() { |
| 15 | assertThrows(RuntimeException.class, () -> { |
| 16 | DirectContext.makeVulkan(0, 0, 0, 0, 0, 0, 0, 0); |
| 17 | }); |
| 18 | } |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected