Examples of MyBeanPrimeString


Examples of org.dozer.vo.enumtest.MyBeanPrimeString

  @Test
  public void testEnumMapsToString() {
    mapper = getMapper(new String[] { "enumMapping.xml" });
    MyBean src = new MyBean();
    src.setSrcType(SrcType.FOO);
    MyBeanPrimeString dest = mapper.map(src, MyBeanPrimeString.class);
    assertEquals("FOO", dest.getDestType());
  }
View Full Code Here

Examples of org.dozer.vo.enumtest.MyBeanPrimeString

   * Test on a mapping from {@link String} to enum.
   */
  @Test
  public void testStringMapsToEnum() {
    mapper = getMapper(new String[] { "enumMapping.xml" });
    MyBeanPrimeString src = new MyBeanPrimeString();
    src.setDestType("FOO");
    src.setDestTypeWithOverride("BAR");
    MyBean dest = mapper.map(src, MyBean.class);
    assertEquals(SrcType.FOO, dest.getSrcType());
    assertEquals(SrcTypeWithOverride.BAR, dest.getSrcTypeWithOverride());
  }
View Full Code Here

Examples of org.dozer.vo.enumtest.MyBeanPrimeString

   */
  @SuppressWarnings("unused")
  @Test(expected = MappingException.class)
  public void testStringMapsToEnumNonexistEnumValue() {
    mapper = getMapper(new String[] { "enumMapping.xml" });
    MyBeanPrimeString src = new MyBeanPrimeString();
    src.setDestType("BAZ");
    MyBean dest = mapper.map(src, MyBean.class);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.