Marked unused values appropriately
This commit is contained in:
parent
b12dc5ba42
commit
106131ab8f
|
@ -389,6 +389,7 @@ public class ExpressionLanguageScenarioTests extends ExpressionTestCase {
|
|||
|
||||
Expression expr = parser.parseExpression("#functionTakesColour('orange')");
|
||||
try {
|
||||
@SuppressWarnings("unused")
|
||||
Object value = expr.getValue(ctx);
|
||||
fail("Should have failed, no type converter registered");
|
||||
} catch (EvaluationException ee) {}
|
||||
|
|
|
@ -108,7 +108,7 @@ public class TestScenarioCreator {
|
|||
/**
|
||||
* Create a context configuration that tests can reference into using the
|
||||
* @() language construct.
|
||||
* @(context:objectName) will index a particular object within a particular context. The 'root' context will be used
|
||||
* at(context:objectName) will index a particular object within a particular context. The 'root' context will be used
|
||||
* for references where no context is specified, eg.
|
||||
* @(orange).
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue