Attempting to resolve something that isn't a simple class name https://bz.apache.org/bugzilla/show_bug.cgi?id=57132
()
| 94 | * https://bz.apache.org/bugzilla/show_bug.cgi?id=57132 |
| 95 | */ |
| 96 | @Test |
| 97 | public void testResolveClass05() { |
| 98 | ImportHandler handler = new ImportHandler(); |
| 99 | |
| 100 | handler.importPackage("java.nio"); |
| 101 | |
| 102 | Class<?> clazz = handler.resolveClass("charset.StandardCharsets"); |
| 103 | |
| 104 | Assert.assertNull(clazz); |
| 105 | } |
| 106 | |
| 107 | /** |
| 108 | * Attempting to resolve something that isn't a simple class name |
nothing calls this directly
no test coverage detected