MCPcopy Create free account
hub / github.com/apache/tomcat / testNull01

Method testNull01

test/org/apache/el/parser/TestAstValue.java:26–34  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

24public 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}

Callers

nothing calls this directly

Calls 3

getTextMethod · 0.95
defineBeanMethod · 0.95
evalMethod · 0.95

Tested by

no test coverage detected