Examples of BoostedObject


Examples of net.sf.gluebooster.java.booster.essentials.objects.BoostedObject

public class BoostedObjectTest extends TestRoot {

  @Test
  public void testGetLog() {
    BoostedObject object = new BoostedObject();
    Assert.assertNotNull(object);
  }
View Full Code Here

Examples of net.sf.gluebooster.java.booster.essentials.objects.BoostedObject

    List<String> decoded = XmlBoostUtils.readFromXmlString(xml);

    Assert.assertEquals(list, decoded);

    ArrayList<Object> list2 = new ArrayList<Object>();
    list2.add(new BoostedObject());
    xml = XmlBoostUtils.writeAsXmlString(list2);
    List<Object> decoded2 = XmlBoostUtils.readFromXmlString(xml);
    Assert.assertEquals(list2.size(), decoded2.size());

  }
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.