Tests that a null context results in an NPE as per EL Javadoc.
()
| 153 | * Tests that a null context results in an NPE as per EL Javadoc. |
| 154 | */ |
| 155 | @Test(expected = NullPointerException.class) |
| 156 | public void testIsReadOnly01() { |
| 157 | MapELResolver mapELResolver = new MapELResolver(); |
| 158 | mapELResolver.isReadOnly(null, new Object(), new Object()); |
| 159 | } |
| 160 | |
| 161 | /** |
| 162 | * Tests that the propertyResolved is false if base is not Map. |
nothing calls this directly
no test coverage detected