}
public void testHead4b() throws Exception {
tag.setCalendarcss("my-calendar.css");
tag.doStartTag();
Head component = (Head) tag.getComponent(); // must be done between start and end
assertEquals("my-calendar.css", component.getCalendarcss());
tag.doEndTag();
verify(HeadTagTest.class.getResource("HeadTagTest-4.txt"));
assertEquals("my-calendar.css", tag.getCalendarcss());
}