@Test
public void createPropfindXml() throws Exception
{
Propfind body = new Propfind();
body.setAllprop(new Allprop());
String xml = SardineUtil.toXml(body);
checkXmlDeclaration(xml);
assertThat(xml, containsString("propfind>"));
assertThat(xml, containsString("allprop/>"));
}