()
| 24 | public class TestAstValue { |
| 25 | |
| 26 | @Test |
| 27 | public void testNull01() { |
| 28 | ELProcessor processor = new ELProcessor(); |
| 29 | TesterBeanB beanB = new TesterBeanB(); |
| 30 | Assert.assertNull(beanB.getText()); |
| 31 | processor.defineBean("bean", beanB); |
| 32 | Object result = processor.eval("bean.text.toLowerCase()"); |
| 33 | Assert.assertNull(result); |
| 34 | } |
| 35 | } |
nothing calls this directly
no test coverage detected