()
| 41 | |
| 42 | |
| 43 | @Test |
| 44 | public void testGetValue02() { |
| 45 | ELProcessor processor = new ELProcessor(); |
| 46 | processor.defineBean("bean01", new TesterBeanB()); |
| 47 | |
| 48 | Object result = processor.getValue( |
| 49 | "bean01.text = 'hello'; bean01.text", String.class); |
| 50 | |
| 51 | Assert.assertEquals("hello", result); |
| 52 | } |
| 53 | |
| 54 | |
| 55 |
nothing calls this directly
no test coverage detected