(String[] args)
| 109 | |
| 110 | // Test harness. |
| 111 | public static void main(String[] args) { |
| 112 | Question dict = new Question(AssortedMethods.getListOfWords()); |
| 113 | Rectangle rect = dict.maxRectangle(); |
| 114 | if (rect != null) { |
| 115 | rect.print(); |
| 116 | } else { |
| 117 | System.out.println ("No rectangle exists"); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | |
| 122 | } |
nothing calls this directly
no test coverage detected