}
@Test
public void shouldAddMultipleStylesheets()
{
String result = new HtmlDocumentBuilder()
.addStylesheet("foo.css")
.addStylesheet("bar.css")
.build(null);
assertThat(result, containsString("<link rel=\"stylesheet\" type=\"text/css\" href=\"foo.css\">"));
assertThat(result, containsString("<link rel=\"stylesheet\" type=\"text/css\" href=\"bar.css\">"));