Examples of RioConfigMethod


Examples of br.com.objectos.rio.RioConfigMethod

  public void parse_get() {
    RioConfigOptions options = new RioConfigOptions();
    options.keys = ImmutableList.of("user.name");

    RioConfigMethod res = options.getOrSet();
    assertThat(res, instanceOf(RioConfigMethod.Get.class));
  }
View Full Code Here

Examples of br.com.objectos.rio.RioConfigMethod

  public void parse_set() {
    RioConfigOptions options = new RioConfigOptions();
    options.keys = ImmutableList.of("user.name", "whatever");

    RioConfigMethod res = options.getOrSet();
    assertThat(res, instanceOf(RioConfigMethod.Set.class));
  }
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.