Package br.com.caelum.vraptor.converter

Examples of br.com.caelum.vraptor.converter.IntegerConverter


  }

  @Test
  public void isCapableOfDealingWithEmptyParameterForInternalWrapperValue() throws OgnlException {
  when(converters.to(Integer.class)).thenReturn(new IntegerConverter());
  Ognl.setValue("cat.firstLeg.id", context, house, "");
  assertThat(house.cat.firstLeg.id, is(equalTo(null)));
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.converter.IntegerConverter

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.