null resolution support

This commit is contained in:
Keith Donald
2008-04-11 15:53:31 +00:00
parent ab3d438119
commit a1b336d93d
6 changed files with 30 additions and 67 deletions

View File

@@ -42,6 +42,11 @@ public class ELExpressionParserTests extends TestCase {
}
}
public void testParseNull() {
Expression exp = parser.parseExpression("null", null);
assertEquals(null, exp.getValue(null));
}
public void testParseEmptyExpressionString() {
String expressionString = "";
try {