/** @throws Exception */
 @Before
 public void setUp() throws Exception {
   PersistenceConvention pc = new PersistenceConventionImpl();
   ColumnMetaFactoryImpl cmf = new ColumnMetaFactoryImpl();
   cmf.setPersistenceConvention(pc);
   PropertyMetaFactoryImpl propertyMetaFactory = new PropertyMetaFactoryImpl();
   propertyMetaFactory.setPersistenceConvention(pc);
   propertyMetaFactory.setColumnMetaFactory(cmf);
   TableMetaFactoryImpl tmf = new TableMetaFactoryImpl();
   tmf.setPersistenceConvention(pc);
   entityMetaFactory = new EntityMetaFactoryImpl();
   entityMetaFactory.setPersistenceConvention(pc);
   entityMetaFactory.setPropertyMetaFactory(propertyMetaFactory);
   entityMetaFactory.setTableMetaFactory(tmf);
   namesModelFactory = new NamesModelFactoryImpl("aaa.ccc", "Names");
 }