Package org.jboss.seam.test.unit.entity

Examples of org.jboss.seam.test.unit.entity.SimpleEntity


   @Test
   public void testCreateInstance() {
      SimpleEntityHomeWithMessageStubs home = new SimpleEntityHomeWithMessageStubs();
      // emulate @Create method
      home.create();
      SimpleEntity entity = home.getInstance();
      assert entity != null : "Excepting a non-null instance";
      assert entity.getClass().equals(SimpleEntity.class) : "Expecting entity class to be " + SimpleEntity.class + " but got " + entity.getClass();
   }
View Full Code Here

TOP

Related Classes of org.jboss.seam.test.unit.entity.SimpleEntity

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.