From b71f0437ad4be2709fbf1a6133c2cd2c6c96a05a Mon Sep 17 00:00:00 2001 From: Stanislav Pankevich Date: Fri, 10 Feb 2023 23:16:15 +0100 Subject: [PATCH] tests/integration: add remaining major tests from ci.eclipse.org --- reqif/helpers/lxml.py | 9 +- reqif/parsers/header_parser.py | 6 +- .../sample.reqif | 2 +- .../sample.reqif | 2 +- .../sample.reqif | 2177 +++++++++++++++++ .../test.itest | 3 + .../sample.reqif | 126 + .../test.itest | 4 + .../sample.reqif | 181 ++ .../test.itest | 4 + ...S10_Reference_20210122_1256_jenkins.reqifz | Bin 0 -> 1885 bytes .../test.itest | 4 + .../sample.reqif | 333 +++ .../test.itest | 3 + .../sample.reqif | 335 +++ .../test.itest | 3 + 16 files changed, 3187 insertions(+), 5 deletions(-) create mode 100644 tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif create mode 100644 tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/test.itest create mode 100644 tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif create mode 100644 tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/test.itest create mode 100644 tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif create mode 100644 tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/test.itest create mode 100644 tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/TC1700_E0000_S10_Reference_20210122_1256_jenkins.reqifz create mode 100644 tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/test.itest create mode 100644 tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif create mode 100644 tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/test.itest create mode 100644 tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif create mode 100644 tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/test.itest diff --git a/reqif/helpers/lxml.py b/reqif/helpers/lxml.py index 3b380ef..fc10980 100644 --- a/reqif/helpers/lxml.py +++ b/reqif/helpers/lxml.py @@ -27,6 +27,13 @@ def my_escape(string: str) -> str: return string +def my_escape_title(string: str) -> str: + # The only known reason for this method is the presence of & in the + # HEADER title of ReqIF files found at the ci.eclipse.org. + string = string.replace("&", "&") + return string + + # Using this rather hacky version because I could not make lxml to print # the namespaced tags such as: # --/reqif-xhtml:div> @@ -42,7 +49,7 @@ def _stringify_reqif_ns_node(node): node_no_ns_tag = etree.QName(node).localname output += f"<{nskey}:{node_no_ns_tag}" for attribute, attribute_value in node.attrib.items(): - output += f' {attribute}="{attribute_value}"' + output += f' {attribute}="{my_escape(attribute_value)}"' if node.text is not None or len(node.getchildren()) > 0: output += ">" if node.text is not None: diff --git a/reqif/parsers/header_parser.py b/reqif/parsers/header_parser.py index 6b6b44b..cce465d 100644 --- a/reqif/parsers/header_parser.py +++ b/reqif/parsers/header_parser.py @@ -1,6 +1,6 @@ from typing import Optional -from reqif.helpers.lxml import my_escape +from reqif.helpers.lxml import my_escape_title from reqif.models.reqif_reqif_header import ReqIFReqIFHeader @@ -113,7 +113,9 @@ def unparse(header: ReqIFReqIFHeader) -> str: "\n" ) if header.title: - output += f" {my_escape(header.title)}\n" + output += ( + f" {my_escape_title(header.title)}\n" + ) output += " \n" else: diff --git a/tests/integration/examples/ci.eclipse.org/TC1000_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1000_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif index d6e4d7f..e04589e 100644 --- a/tests/integration/examples/ci.eclipse.org/TC1000_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif +++ b/tests/integration/examples/ci.eclipse.org/TC1000_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -6,7 +6,7 @@ RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) 1.0 RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) - TC 1000 'Simple Content' + TC 1000 'Simple Content' diff --git a/tests/integration/examples/ci.eclipse.org/TC1100_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1100_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif index ac217b2..2025a5d 100644 --- a/tests/integration/examples/ci.eclipse.org/TC1100_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif +++ b/tests/integration/examples/ci.eclipse.org/TC1100_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -6,7 +6,7 @@ RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) 1.0 RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) - TC 1100 'Unformatted common system attributes & SpecHierarchy' + TC 1100 'Unformatted common system attributes & SpecHierarchy' diff --git a/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif new file mode 100644 index 0000000..1f7e7ea --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -0,0 +1,2177 @@ + + + + + 2021-01-22T12:56:32.580Z + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + 1.0 + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + TC 1200 'Formated Content' + + + + + + + + + + + + + + ID_TC1200_DatatypeDefinitionXHTML + + + + + ID_TC1200_DatatypeDefinitionString + + + + + + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlPType + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlLiType + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlLiType + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlDtType + XhtmlDdType + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlH1Type + XhtmlH2Type + XhtmlH3Type + XhtmlH4Type + XhtmlH5Type + XhtmlH6Type + + XhtmlLiType + + + XhtmlLiType + + + XhtmlDtType + XhtmlDdType + + XhtmlPType + XhtmlDivType + XhtmlPreType + + XhtmlAddressType + + + + + + + XhtmlEditType + XhtmlEditType + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlCaptionType + + + + + + + + + + + + + + + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlLiType + + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlDtType + XhtmlDdType + + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + XhtmlDdType + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + XhtmlDtType + XhtmlDdType + XhtmlDtType + + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + + + + + + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + + + + + + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + + + + + + + + + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + XhtmlThType + XhtmlTdType + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_AttributeDefinitionString + + + + + ID_TC1200_AttributeDefinitionXHTML + + + XhtmlDivType + + + + + + + text before h1XhtmlH1Typetext after h1 + text before h2XhtmlH2Typetext after h2 + text before h3XhtmlH3Typetext after h3 + text before h4XhtmlH4Typetext after h4 + text before h5XhtmlH5Typetext after h5 + text before h6XhtmlH6Typetext after h6 + text before ul + XhtmlLiType + text after ul + text before ol + XhtmlLiType + text after ol + text before dl + XhtmlDtType + XhtmlDdType + text after dl + text before pXhtmlPTypetext after p + text before divXhtmlDivTypetext after div + text before preXhtmlPreTypetext after pre + text before blockquotetext after blockquote + text before addressXhtmlAddressTypetext after address + text before hrtext after hr + text before table + + + + text after table + text before brtext after br + text before spanXhtmlSpanTypetext after span + text before emXhtmlEmTypetext after em + text before strongXhtmlStrongTypetext after strong + text before dfnXhtmlDfnTypetext after dfn + text before codeXhtmlCodeTypetext after code + text before sampXhtmlSampTypetext after samp + text before kbdXhtmlKbdTypetext after kbd + text before varXhtmlVarTypetext after var + text before citeXhtmlCiteTypetext after cite + text before abbrXhtmlAbbrTypetext after abbr + text before acronymXhtmlAcronymTypetext after acronym + text before qXhtmlQTypetext after q + text before ttXhtmlInlPresTypetext after tt + text before iXhtmlInlPresTypetext after i + text before bXhtmlInlPresTypetext after b + text before bigXhtmlInlPresTypetext after big + text before smallXhtmlInlPresTypetext after small + text before subXhtmlInlPresTypetext after sub + text before supXhtmlInlPresTypetext after sup + text before aXhtmlATypetext after a + text before insXhtmlEditTypetext after ins + text before delXhtmlEditTypetext after del + + + + + + + ID_TC1200_SpecObjectType + + + + + + + ID_TC1200_SpecificationType + + + + + ID_TC1200_SpecObject_xhtml.p.type + + + + + ID_TC1200_SpecObject_xhtml.div.type + + + + + ID_TC1200_SpecObject_xhtml.br.type + + + + + ID_TC1200_SpecObject_xhtml.span.type + + + + + ID_TC1200_SpecObject_xhtml.em.type + + + + + ID_TC1200_SpecObject_xhtml.strong.type + + + + + ID_TC1200_SpecObject_xhtml.dfn.type + + + + + ID_TC1200_SpecObject_xhtml.code.type + + + + + ID_TC1200_SpecObject_xhtml.samp.type + + + + + ID_TC1200_SpecObject_xhtml.kbd.type + + + + + ID_TC1200_SpecObject_xhtml.var.type + + + + + ID_TC1200_SpecObject_xhtml.cite.type + + + + + ID_TC1200_SpecObject_xhtml.abbr.type + + + + + ID_TC1200_SpecObject_xhtml.acronym.type + + + + + ID_TC1200_SpecObject_xhtml.q.type + + + + + ID_TC1200_SpecObject_xhtml.inl.pres.type + + + + + ID_TC1200_SpecObject_xhtml.a.type + + + + + ID_TC1200_SpecObject_xhtml.edit.type + + + + + ID_TC1200_SpecObject_xhtml.h1.type + + + + + ID_TC1200_SpecObject_xhtml.h2.type + + + + + ID_TC1200_SpecObject_xhtml.h3.type + + + + + ID_TC1200_SpecObject_xhtml.h4.type + + + + + ID_TC1200_SpecObject_xhtml.h5.type + + + + + ID_TC1200_SpecObject_xhtml.h6.type + + + + + ID_TC1200_SpecObject_xhtml.ul.type + + + + + ID_TC1200_SpecObject_xhtml.ol.type + + + + + ID_TC1200_SpecObject_xhtml.dl.type + + + + + ID_TC1200_SpecObject_xhtml.pre.type + + + + + ID_TC1200_SpecObject_xhtml.blockquote.type + + + + + ID_TC1200_SpecObject_xhtml.address.type + + + + + ID_TC1200_SpecObject_xhtml.hr.type + + + + + ID_TC1200_SpecObject_xhtml.table.type + + + + + ID_TC1200_SpecObject_xhtml.li.type + + + + + ID_TC1200_SpecObject_xhtml.dt.type + + + + + ID_TC1200_SpecObject_xhtml.dd.type + + + + + ID_TC1200_SpecObject_xhtml.caption.type + + + + + ID_TC1200_SpecObject_xhtml.thead.type + + + + + ID_TC1200_SpecObject_xhtml.col.type + + + + + ID_TC1200_SpecObject_xhtml.colgroup.type + + + + + ID_TC1200_SpecObject_xhtml.tfoot.type + + + + + ID_TC1200_SpecObject_xhtml.tbody.type + + + + + ID_TC1200_SpecObject_xhtml.tr.type + + + + + ID_TC1200_SpecObject_xhtml.td.type + + + + + ID_TC1200_SpecObject_xhtml.th.type + + + + + + + + diff --git a/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..cc15acc --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1200_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,3 @@ +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif diff --git a/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif new file mode 100644 index 0000000..c55f797 --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -0,0 +1,126 @@ + + + + + 2021-01-22T12:56:38.320Z + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + 1.0 + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + TC 1300 'SpecRelation' + + + + + + + + + + + + + + ID_TC1300_DatatypeDefinitionString + + + + + + + + + + ID_TC1300_DatatypeDefinitionXHTML + + + + + + + + + + + + ID_TC1300_AttributeDefinitionString + + + + + ID_TC1300_SpecObjectType + + + + + + + ID_TC1300_AttributeDefinitionString + + + + + ID_TC1300_SpecObjectType + + + + + + + + + ID_TC1300_AttributeDefinitionString_SpecRelation + + + TC 1300 SpecRelation + + + + + ID_TC1300_SpecObject2 + + + ID_TC1300_SpecObject1 + + + ID_TC1300_SpecRelationType + + + + + + + ID_TC1300_SpecificationType + + + + + ID_TC1300_SpecObject1 + + + + + ID_TC1300_SpecObject2 + + + + + + + + + ID_TC1300_SpecRelation + + + ID_TC1300_SpecRelationGroupType + + + ID_TC1300_Specification + + + ID_TC1300_Specification + + + + + + diff --git a/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..02e8e2a --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1300_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,4 @@ +UNSUPPORTED: true +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif diff --git a/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif new file mode 100644 index 0000000..f008dcb --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -0,0 +1,181 @@ + + + + + 2021-01-22T12:56:38.424Z + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + 1.0 + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + TC 1400 'Internal Table' + + + + + + + + + + + + + + ID_TC1400_DatatypeDefinitionString + + + + + + + + + ID_TC1400_DatatypeDefinitionString + + + + + ID_TC1400_DatatypeDefinitionString + + + + + ID_TC1400_DatatypeDefinitionInteger + + + + + + + + + + + + ID_TC1400_SpecObjectTypeRegularAttributeDefinitionString_ReqIF.Name + + + + + ID_TC1400_SpecObjectTypeRegular + + + + + + + ID_TC1400_SpecObjectTypeRegularAttributeDefinitionString_ReqIF.Name + + + + + ID_TC1400_SpecObjectTypeRegular + + + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.Name + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.ChangeDescription + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionInteger_ReqIF.Revision + + + + + ID_TC1400_SpecObjectTypeInternalTable + + + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.Name + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.ChangeDescription + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionInteger_ReqIF.Revision + + + + + ID_TC1400_SpecObjectTypeInternalTable + + + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.Name + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionString_ReqIF.ChangeDescription + + + + + ID_TC1400_SpecObjectTypeInternalTableAttributeDefinitionInteger_ReqIF.Revision + + + + + ID_TC1400_SpecObjectTypeInternalTable + + + + + + + ID_TC1400_SpecificationType + + + + + ID_TC1400_SpecObject1 + + + + + ID_TC1400_SpecObject11 + + + + + ID_TC1400_SpecObject111 + + + + + ID_TC1400_SpecObject112 + + + + + ID_TC1400_SpecObject113 + + + + + + + + + + + + diff --git a/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..02e8e2a --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1400_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,4 @@ +UNSUPPORTED: true +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif diff --git a/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/TC1700_E0000_S10_Reference_20210122_1256_jenkins.reqifz b/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/TC1700_E0000_S10_Reference_20210122_1256_jenkins.reqifz new file mode 100644 index 0000000000000000000000000000000000000000..cdedae7486563dd8f4b3999e4a143d9417be893b GIT binary patch literal 1885 zcmb_dZ8#GO8=lFw6EV_Ao3G5r=``CkA6utNLgs+Tc`W0=`Y=)+N25|-og*--fy zQWugKZRSM9yb?OBM2s`acsnW62d~aK*L6DYzxQ0{etta9^XtBU-1l|+5>+?p0w53w z0Q$YHKi~`4Z`=Vc7&|nY;)>n?d1@`k5F-f-(XC@veZoZit?R~B@UPvub98&!c*FfX5jf2) zR)ZcJGyZXl$o7K`1Ov4$;CFF0K#&z~jTg`j5AlJ=ir!$)3-r z0q~FG-A1$K?3DSE%Uu2x%XPTFQaaOYu8!jH2AYf-E!q5~xR^-E9ngf>?sW$U+14Lt zsyQE4R&4C2zW~0$-dCm>eqJmxXOQi-I5q6iR@M1_7W-ff)i>W zKKBUAHfoA1!_(@3(}cLzv)~wgEm;P#WzMWL!{eb79OG>^XafX#Ka1~Z+l>K{YT?ea z#g?^C4%|E^13ACcbER8pye^j?zZSDB9mtoSmuxC7rt#Vsh-eK#}PX5u=RFL#Gi%b29m6EuygW>p}cltiCT&Loy8r3{4T=4VVdx<}A zT;saE7VA5dpEfr#HSUBc0b7GgE><+b;BzwW+8*>Jz%9c1_tN}Y+~ zQ*1jh;J{K-6%z1sz`lc_bjir{;ek++drIJHYzia`TW~ut?EF_-dJgeSMbsBmS-eF^ z=Ee8dYHQd1RviQEckWL+Ug-~a>fp$;AB{GXu0i*A5%)}k6y}|IHaKVGWZ0eI=2PFm z2v7PV=M6+O%19L>V~>GbB`>2WXX;`nx3m>lLX{T{1*qvvTYZh}TsW&}D$`*U&PVK= zvnug)>*IarzkbGR0Y?h;N-J3MYeFPF${d%ZIm{YDrG}@MtbK`Kh$Ze|7Dg2S;AsK? zzW;12F~7%BNDjXA6b(Hk4-85XkPDj12%a2gpFQ@un;|&9|A(`d`j=slB1gg62Yjw$ zsn&^TKO^bFV*g?`J^O+D?dFfVPIId~zT5R6RjSP!`9!32wYUXWDrCbj9_V*yw02_ne=baK&8D0+)k zR%)NPjs{ot;c2#o6Y_Dmns29Ib>Vw6kD}VCc)hLzqduHlBh=eHh$MhuxQ5S71Y*v# z4`fc%3hCpMflTjpsxi*Gj(bM%>fP00+ar@8sC$)A??TJig7e^toQg~WEQGeh!26Xd zA=P|Xb3yBt9_Fv1!eshYFNwyGMW0(9$7 zvx0Cc?zsmzZ7sFsO)LYssKNFmcyM%Ya#^ONL-$zQIfaB5{%)jDq`o)43N~{kgPotA zXIv=^LanxRYtuv@N6ArFM-7-!iO0@q(xZn?qYmad2DI_f`t&(QE;r_a|LuWnd_O{q(pSG#`9bmT-r)A~?VdRal7PS??J~V==HYiwIqoxE zuvfn2n#hmiD@L_FNbhF>M+B74EUC|>gFe;OA1Y4Cl;3?)gRQEPMNQgPe(6>A9RM_4 ztdFBqXkIsth{moxEHQC;8MWwFrywrU7 zQrU0xe9n9~>aOYHY~lrbPsBH_Gb5%0lbhR;)ft6P(=Q)=@ru=`Twb%V9qqcMzMCnc zzJ8NXc%o$H2enxhBCEfT@!8`LgcdLr2mqLU_1WVpKwZF}<@2TgKbOy6@pr4}e_6g% f@K=_ijqLs3EPo`+m#7B%tQWX3{Tut_Z{L3bT@xKa literal 0 HcmV?d00001 diff --git a/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..02e8e2a --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1700_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,4 @@ +UNSUPPORTED: true +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif diff --git a/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif new file mode 100644 index 0000000..bac2e5c --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -0,0 +1,333 @@ + + + + + 2021-01-22T12:56:38.677Z + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + 1.0 + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + TC 1800 'HIS Exchange Process OEM -> SUP (initial)' + + + + + + + + + + + + + + + + + + + + + + + + + + + + _RB77ZFyxEeumRtWSJE-orw + + + + + _RB77Y1yxEeumRtWSJE-orw + + + + + _RB77Y1yxEeumRtWSJE-orw + + + + + _RB77ZVyxEeumRtWSJE-orw + + + + + + + + + _RB77ZFyxEeumRtWSJE-orw + + + + + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-01 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-03 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-06 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-07 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-08 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-09 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + + + _RB77cFyxEeumRtWSJE-orw + + + Spec1 + + + + + _RB77b1yxEeumRtWSJE-orw + + + + + _RB77cVyxEeumRtWSJE-orw + + + + + _RB77eFyxEeumRtWSJE-orw + + + + + _RB77f1yxEeumRtWSJE-orw + + + + + _RB77hlyxEeumRtWSJE-orw + + + + + _RB77jVyxEeumRtWSJE-orw + + + + + _RB77lFyxEeumRtWSJE-orw + + + + + + + + + _RB77cFyxEeumRtWSJE-orw + + + Spec2 + + + + + _RB77b1yxEeumRtWSJE-orw + + + + + + diff --git a/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..cc15acc --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1800_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,3 @@ +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif diff --git a/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif b/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif new file mode 100644 index 0000000..f96ce11 --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/sample.reqif @@ -0,0 +1,335 @@ + + + + + 2021-01-22T12:56:38.677Z + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + 1.0 + RMF - Requirements Modeling Framework (http://www.eclipse.org/rmf) + TC 1800 'HIS Exchange Process OEM -> SUP (initial)' + + + + + + + + + + + + + + + + + + + + + + + + + + + + _RB77ZFyxEeumRtWSJE-orw + + + + + _RB77Y1yxEeumRtWSJE-orw + + + + + _RB77Y1yxEeumRtWSJE-orw + + + + + _RB77ZVyxEeumRtWSJE-orw + + + + + + + + + _RB77ZFyxEeumRtWSJE-orw + + + + + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-01 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-03 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-04 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-07 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-08 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + _RB77a1yxEeumRtWSJE-orw + + + Obj-09 + + + + + _RB77bFyxEeumRtWSJE-orw + + + + + _RB77bVyxEeumRtWSJE-orw + + + + + _RB77ZlyxEeumRtWSJE-orw + + + _RB77blyxEeumRtWSJE-orw + + + + + _RB77alyxEeumRtWSJE-orw + + + + + + + + + _RB77cFyxEeumRtWSJE-orw + + + Spec1 + + + + + _RB77b1yxEeumRtWSJE-orw + + + + + _RB77cVyxEeumRtWSJE-orw + + + + + _RB77eFyxEeumRtWSJE-orw + + + + + _RCCCAFyxEeumRtWSJE-orw + + + + + _RB77hlyxEeumRtWSJE-orw + + + + + _RB77lFyxEeumRtWSJE-orw + + + + + + + + + _RB77cFyxEeumRtWSJE-orw + + + Spec2 + + + + + _RB77b1yxEeumRtWSJE-orw + + + + + _RB77jVyxEeumRtWSJE-orw + + + + + + + + diff --git a/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/test.itest b/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/test.itest new file mode 100644 index 0000000..cc15acc --- /dev/null +++ b/tests/integration/examples/ci.eclipse.org/TC1801_E0000_S10_Reference_20210122_1256_jenkins/test.itest @@ -0,0 +1,3 @@ +RUN: mkdir -p %S/output +RUN: %reqif passthrough %S/sample.reqif %S/output/sample.reqif +RUN: diff %S/sample.reqif %S/output/sample.reqif