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));
}