267268269270271272273274275276277
writer.element("select"); select.options(writer); writer.end(); assertEquals(writer.toString(), read("disabled_option.txt")); verify(); }
302303304305306307308309310311312
writer.element("select"); select.options(writer); writer.end(); assertEquals(writer.toString(), read("option_groups.txt")); verify(); }
335336337338339340341342343344345
writer.element("select"); select.options(writer); writer.end(); assertEquals(writer.toString(), read("option_groups_precede_ungroup_options.txt")); verify(); }
370371372373374375376377378379380
writer.element("select"); select.options(writer); writer.end(); assertEquals(writer.toString(), read("option_group_attributes.txt")); verify(); }
919293949596979899100101
writer.element("select"); select.options(writer); writer.end(); assertEquals(writer.toString(), read("just_options.html")); } @Test
115116117118119120121122123124125
writer.element("select"); select.options(writer); writer.end(); assertEquals(writer.toString(), read("option_attributes.html")); } @Test
139140141142143144145146147148149
writer.element("select"); select.options(writer); writer.end(); assertEquals(writer.toString(), read("disabled_option.html")); }
165166167168169170171172173174175
writer.element("select"); select.options(writer); writer.end(); assertEquals(writer.toString(), read("option_groups.html")); } @Test
188189190191192193194195196197198
writer.element("select"); select.options(writer); writer.end(); assertEquals(writer.toString(), read("option_groups_precede_ungroup_options.html")); } @Test
212213214215216217218219220221
writer.element("select"); select.options(writer); writer.end(); assertEquals(writer.toString(), read("option_group_attributes.html")); } }