Package org.beangle.model.entity

Source Code of org.beangle.model.entity.ModelTest

/* Copyright c 2005-2012.
* Licensed under GNU  LESSER General Public License, Version 3.
* http://www.gnu.org/licenses
*/
package org.beangle.model.entity;

import static org.testng.Assert.assertNotNull;

import org.beangle.model.example.ContractInfo;
import org.testng.annotations.Test;

@Test
public class ModelTest {

  public void test() {
    ContractInfo entity = Model.newInstance(ContractInfo.class);
    assertNotNull(entity);
  }
}
TOP

Related Classes of org.beangle.model.entity.ModelTest

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.