()
| 21 | |
| 22 | public class PathTest implements Executable { |
| 23 | @Override |
| 24 | public void execute() throws Exception { |
| 25 | TestRunner.testMethod(this, "iter"); |
| 26 | TestRunner.testMethod(this, "convexity"); |
| 27 | TestRunner.testMethod(this, "isShape"); |
| 28 | TestRunner.testMethod(this, "checks"); |
| 29 | TestRunner.testMethod(this, "storage"); |
| 30 | TestRunner.testMethod(this, "swap"); |
| 31 | TestRunner.testMethod(this, "contains"); |
| 32 | TestRunner.testMethod(this, "utils"); |
| 33 | TestRunner.testMethod(this, "serialize"); |
| 34 | } |
| 35 | |
| 36 | public void iter() { |
| 37 | try (Path p = new Path().moveTo(10, 10).lineTo(20, 0).lineTo(20, 20).closePath(); |
nothing calls this directly
no test coverage detected