Package org.jresearch.flexess.core.services

Examples of org.jresearch.flexess.core.services.IApplicationService


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$
  }
View Full Code Here

TOP

Related Classes of org.jresearch.flexess.core.services.IApplicationService

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.