()
| 2215 | @Test void testMightBeAssignableFrom() { |
| 2216 | final Object myMap = new HashMap<String, Integer>() { |
| 2217 | @Override public Set<Entry<String, Integer>> entrySet() { |
| 2218 | throw new UnsupportedOperationException(); |
| 2219 | } |
| 2220 | @Override public Integer put(String key, Integer value) { |
| 2221 | throw new UnsupportedOperationException(); |
| 2222 | } |
no outgoing calls
no test coverage detected