()
| 326 | * Null base should be a NO-OP rather than an exception |
| 327 | */ |
| 328 | @Test |
| 329 | public void testSetValue09() { |
| 330 | ArrayELResolver resolver = new ArrayELResolver(); |
| 331 | ELContext context = new StandardELContext(ELManager.getExpressionFactory()); |
| 332 | |
| 333 | resolver.setValue(context, null, Integer.valueOf(1), Integer.valueOf(4)); |
| 334 | Assert.assertFalse(context.isPropertyResolved()); |
| 335 | } |
| 336 | |
| 337 | /** |
| 338 | * Tests that a null context results in an NPE as per EL Javadoc. |
nothing calls this directly
no test coverage detected