public void should_have_options(String... expected_strings) {
Strings options = Strings.instance_from(get_all_options());
Strings strings_not_present = options
.should_have_all_these_strings(expected_strings);
strings_not_present.should_be_empty();
}
@SuppressWarnings("unchecked")
public List<String> get_all_options() {
List<String> option_strings = ListUtils.EMPTY_LIST;