mirror of
https://github.com/jezhiggins/arabica
synced 2025-01-30 08:38:15 +01:00
skip if no external DTD
This commit is contained in:
parent
7e22f79e71
commit
647de72862
1 changed files with 4 additions and 2 deletions
|
@ -90,8 +90,10 @@ class documenttypegetnotations : public DOMTestCase<string_type, string_adaptor>
|
|||
baseT::assertNotNull(docType, __LINE__, __FILE__);
|
||||
notationList = docType.getNotations();
|
||||
baseT::assertNotNull(notationList, __LINE__, __FILE__);
|
||||
for (unsigned int indexN65627 = 0; indexN65627 != notationList.getLength(); indexN65627++) {
|
||||
notation = (Node) notationList.item(indexN65627);
|
||||
notation = notationList.getNamedItem(SA::construct_from_utf8("notation1"));
|
||||
baseT::skipIfNull(notation);
|
||||
for (unsigned int indexN65635 = 0; indexN65635 != notationList.getLength(); indexN65635++) {
|
||||
notation = (Node) notationList.item(indexN65635);
|
||||
notationName = notation.getNodeName();
|
||||
actual.push_back(notationName);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue