()
| 13 | |
| 14 | public class TestTest implements Executable { |
| 15 | @Override |
| 16 | public void execute() throws Exception { |
| 17 | TestRunner.testMethod(this, "abc"); |
| 18 | throw new Exception("Unexpected in execute"); |
| 19 | } |
| 20 | |
| 21 | public void abc() throws Exception { |
| 22 | assertEquals(true, true); |
nothing calls this directly
no test coverage detected