TestUtils.addFolder(session, folderName, defaultFolderNodeType, "");
ContainerResponse response = service(WebDAVMethods.GET, getPathWS() + folderName, "", null, null);
assertEquals(HTTPStatus.OK, response.getStatus());
XSLTStreamingOutput XSLTout = (XSLTStreamingOutput)response.getEntity();
ByteArrayOutputStream byteOut = new ByteArrayOutputStream();
XSLTout.write(byteOut);
System.out.println("\n" + byteOut.toString() + "\n");
assertTrue(byteOut.toString().contains(strToTest));