Package org.springframework.binding.expression.el

Examples of org.springframework.binding.expression.el.TestBean


  }

  public void testSetValueCoersionError() {
    String expressionString = "maximum";
    Expression exp = parser.parseExpression(expressionString, null);
    TestBean context = new TestBean();
    try {
      exp.setValue(context, "bogus");
      fail("Should have failed with coersion");
    } catch (ValueCoercionException e) {
    }
View Full Code Here

TOP

Related Classes of org.springframework.binding.expression.el.TestBean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.