diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/source/xmltesttools.cxx | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/test/source/xmltesttools.cxx b/test/source/xmltesttools.cxx index 7cf4bb53c6d9..db743e5688aa 100644 --- a/test/source/xmltesttools.cxx +++ b/test/source/xmltesttools.cxx @@ -76,8 +76,14 @@ xmlXPathObjectPtr XmlTestTools::getXPathNode(const xmlDocUniquePtr& pXmlDoc, con return pXmlXpathObj; } -void XmlTestTools::registerNamespaces(xmlXPathContextPtr& /*pXmlXpathCtx*/) +void XmlTestTools::registerNamespaces(xmlXPathContextPtr& pXmlXpathCtx) { + // ooxml + XmlTestTools::registerOOXMLNamespaces(pXmlXpathCtx); + // odf + XmlTestTools::registerODFNamespaces(pXmlXpathCtx); + // reqif-xhtml + xmlXPathRegisterNs(pXmlXpathCtx, BAD_CAST("reqif-xhtml"), BAD_CAST("http://www.w3.org/1999/xhtml")); } OUString XmlTestTools::getXPath(const xmlDocUniquePtr& pXmlDoc, const OString& rXPath, const OString& rAttribute) |