Package org.bifrost.xmlio.test.helpers.subpackage

Examples of org.bifrost.xmlio.test.helpers.subpackage.TestHelperOther


    assertTrue(i.hasNext());
    TestHelperSimple simpleHelper = (TestHelperSimple)i.next();
    assertEquals(simpleHelper.getNumber(), 222l);
    assertEquals(simpleHelper.getString(), "aaa");
    assertTrue(i.hasNext());
    TestHelperOther otherHelper = (TestHelperOther)i.next();
    assertEquals(otherHelper.getNumber(), 123l);
    assertEquals(otherHelper.getLetter(), "ccc");
  } // end testAbstractObject()
View Full Code Here

TOP

Related Classes of org.bifrost.xmlio.test.helpers.subpackage.TestHelperOther

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.