Package br.com.objectos.rio

Examples of br.com.objectos.rio.RioConfigOptions


*/
@Test
public class RioConfigOptionsTest {

  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


    RioConfigMethod res = options.getOrSet();
    assertThat(res, instanceOf(RioConfigMethod.Get.class));
  }

  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

Related Classes of br.com.objectos.rio.RioConfigOptions

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.