String content = readFile("expanded_team.xml")
.replace("<feed xml:base=\"http://some.host.com/service.root/\">", "")
.replace("</feed>", "");
assertNotNull(content);
EdmEntitySet entitySet = MockFacade.getMockEdm().getDefaultEntityContainer().getEntitySet("Teams");
InputStream reqContent = createContentAsStream(content);
// execute
readAndExpectException(entitySet, reqContent,
EntityProviderException.INVALID_INLINE_CONTENT.addContent("xml data"));