Package honeycrm.client.dto

Examples of honeycrm.client.dto.Configuration


import junit.framework.TestCase;

public class NewDtoWizardTest extends TestCase {
  public void testWizard() {
    final Configuration c = NewDtoWizard.getConfiguration();

    final String kind = "Contact";

    final ModuleDto contact = c.getModuleDtos().get(kind);
    assertEquals(kind, contact.getModule());
    assertNotNull(contact.getExtraButtons());
    assertNotNull(contact.getFields());
    assertNotNull(contact.getFieldById("name"));
    assertNotNull(contact.getFieldById("accountId"));
View Full Code Here


public class ConfigurationServiceTest extends TestCase {
  private final ConfigServiceImpl configurator = new ConfigServiceImpl();

  public void testConfigurator() {
    final Configuration c = configurator.getConfiguration();
   
  }
View Full Code Here

TOP

Related Classes of honeycrm.client.dto.Configuration

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.