Package org.sonar.api.database.configuration

Examples of org.sonar.api.database.configuration.Property


public class PropertyTest {

  @Test
  public void encodeBlob() {
    Property prop = new Property("key1", "value1");
    assertThat(prop.getValue(), is("value1"));

    prop.setValue(null);
    assertThat(prop.getValue(), nullValue());
  }
View Full Code Here

TOP

Related Classes of org.sonar.api.database.configuration.Property

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.