public class App1Test extends BaseMetaTest {
@Test
public void testCreateApplication() throws Exception {
IApplicationService app = getApplicationService();
IApplicationMetaInfo am = app.getApplication("app_com.jresearchsoft.uam.admin"); //$NON-NLS-1$
IApplicationMetaInfo am2 = app.findApplication("TestModel"); //$NON-NLS-1$
assertNotNull(am);
assertNotNull(am2);
assertEquals(am.getId(), "app_com.jresearchsoft.uam.admin"); //$NON-NLS-1$
assertEquals(am.getName(), "FlexessAdmin"); //$NON-NLS-1$
}