From 7fa4d9e928440bd4bd2a9d71a3f88188b3d7a3ca Mon Sep 17 00:00:00 2001 From: Andy Clement Date: Mon, 18 Aug 2008 00:22:09 +0000 Subject: [PATCH] moved TODOs to readme --- .../org/springframework/expression/spel/EvaluationTests.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/org.springframework.expression/src/test/java/org/springframework/expression/spel/EvaluationTests.java b/org.springframework.expression/src/test/java/org/springframework/expression/spel/EvaluationTests.java index d6c042e812..654b27739c 100644 --- a/org.springframework.expression/src/test/java/org/springframework/expression/spel/EvaluationTests.java +++ b/org.springframework.expression/src/test/java/org/springframework/expression/spel/EvaluationTests.java @@ -166,7 +166,6 @@ public class EvaluationTests extends ExpressionTestCase { evaluateAndAskForReturnType("8/4", new Double(2.0), Double.class); } - // TODO decide about a conversion like this, should we support it and coerce silently? // public void testMathOperatorDivide04() { // evaluateAndAskForReturnType("8.4 / 4", "2", Integer.class); // } @@ -364,7 +363,6 @@ public class EvaluationTests extends ExpressionTestCase { SpelMessages.RESULT_OF_SELECTION_CRITERIA_IS_NOT_BOOLEAN); } - // TODO Is $index within projection/selection useful or just cute? public void testSelectionUsingIndex() { evaluate("{1,2,3,4,5,6,7,8,9,10}.?{$index > 5 }", "[7, 8, 9, 10]", ArrayList.class); }