* Basic Element production testing accomplished in superclass.
* @throws FactoryConfigurationError
* @throws ParserConfigurationException
*/
public void testITEToElement() throws ParserConfigurationException, FactoryConfigurationError {
InternalTimeoutException ite =
new InternalTimeoutException("A test message", 40);
Document dom = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
Element elem = this.exceptionToElement.throwableToElement(ite, dom);
assertEquals("throwable", elem.getNodeName());