Multiple package imports with a single match. https://bz.apache.org/bugzilla/show_bug.cgi?id=57113
()
| 77 | * Multiple package imports with a single match. https://bz.apache.org/bugzilla/show_bug.cgi?id=57113 |
| 78 | */ |
| 79 | @Test |
| 80 | public void testResolveClass04() { |
| 81 | ImportHandler handler = new ImportHandler(); |
| 82 | |
| 83 | handler.importPackage("java.util"); |
| 84 | handler.importPackage("java.net"); |
| 85 | |
| 86 | Class<?> clazz = handler.resolveClass("ArrayList"); |
| 87 | |
| 88 | Assert.assertEquals(ArrayList.class, clazz); |
| 89 | } |
| 90 | |
| 91 | |
| 92 | /** |
nothing calls this directly
no test coverage detected