| Total Complexity | 2 |
| Total Lines | 10 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | package example.shapes; |
||
| 5 | public class RoundRectangleTest extends ShapeTest { |
||
| 6 | |||
| 7 | @Override |
||
| 8 | protected void setup() { |
||
| 9 | super.setup(); |
||
| 10 | shape = new RoundRectangle(width, height, width, height, width / 3.0, height / 3.0, getDrawingPanel()); |
||
| 11 | } |
||
| 12 | |||
| 13 | public static void main(String[] args) { |
||
| 14 | new RoundRectangleTest(); |
||
| 15 | } |
||
| 17 |