(String[] args)
| 1252 | } |
| 1253 | |
| 1254 | public static void main(String[] args){ |
| 1255 | |
| 1256 | try{ |
| 1257 | TestAnnotation testAnnot = new TestAnnotation(""); |
| 1258 | testAnnot.setUp(); |
| 1259 | testAnnot.testIterator(); |
| 1260 | testAnnot._testGap(); |
| 1261 | testAnnot.tearDown(); |
| 1262 | testAnnot.testOverlapsAndCoextensive(); |
| 1263 | testAnnot.testIsPartiallyCompatibleAndCompatible(); |
| 1264 | }catch(Throwable t){ |
| 1265 | t.printStackTrace(); |
| 1266 | } |
| 1267 | } |
| 1268 | } // class TestAnnotation |
| 1269 |
nothing calls this directly
no test coverage detected