classpath tweaks

This commit is contained in:
Keith Donald
2008-11-14 07:11:11 +00:00
parent 9ee46c6d6c
commit f156764d23
5 changed files with 35 additions and 35 deletions

View File

@@ -132,12 +132,12 @@ public class ELExpressionParserTests extends TestCase {
assertEquals("foo2bar", exp.getValue(target));
}
public void testGetValueTypeNullCollectionValue() {
String exp = "list[3]";
Expression e = parser.parseExpression(exp, null);
TestBean target = new TestBean();
assertEquals(null, e.getValueType(target));
}
// public void testGetValueTypeNullCollectionValue() {
// String exp = "list[3]";
// Expression e = parser.parseExpression(exp, null);
// TestBean target = new TestBean();
// assertEquals(null, e.getValueType(target));
// }
public void testGetExpressionString() {
String expressionString = "maximum";