Examples of AutumnConfig


Examples of co.ohba.autumn.AutumnConfig

public class AutumnConfigTest {

  @Test
  public void shouldAllowNoQuotes() {
    String configJson = "{pojoMapping:false}";
    AutumnConfig result = AutumnConfig.fromJsonString(null,configJson);
    assertNotNull(result);
    assertFalse(result.getPojoMapping());
  }
View Full Code Here

Examples of co.ohba.autumn.AutumnConfig

  }

  @Test
  public void shouldAllowSingleQuotes() {
    String configJson = "{'pojoMapping':false}";
    AutumnConfig result = AutumnConfig.fromJsonString(null, configJson);
    assertNotNull(result);
    assertFalse(result.getPojoMapping());
  }
View Full Code Here

Examples of co.ohba.autumn.AutumnConfig

  }

  @Test
  public void shouldAllowComments() {
    String configJson = "{'pojoMapping' /* comment*/ :false} // other comment";
    AutumnConfig result = AutumnConfig.fromJsonString(null, configJson);
    assertNotNull(result);
    assertFalse(result.getPojoMapping());
  }
View Full Code Here
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.