`` `` element, an invented element for use in testing.
| 705 | |
| 706 | |
| 707 | class CT_Parent(BaseOxmlElement): |
| 708 | """ |
| 709 | ``<w:parent>`` element, an invented element for use in testing. |
| 710 | """ |
| 711 | |
| 712 | eg_zooChoice = ZeroOrOneChoice( |
| 713 | (Choice("w:choice"), Choice("w:choice2")), |
| 714 | successors=("w:oomChild", "w:oooChild"), |
| 715 | ) |
| 716 | oomChild = OneOrMore("w:oomChild", successors=("w:oooChild", "w:zomChild", "w:zooChild")) |
| 717 | oooChild = OneAndOnlyOne("w:oooChild") |
| 718 | zomChild = ZeroOrMore("w:zomChild", successors=("w:zooChild",)) |
| 719 | zooChild = ZeroOrOne("w:zooChild", successors=()) |
| 720 | optAttr = OptionalAttribute("w:optAttr", ST_IntegerType) |
| 721 | reqAttr = RequiredAttribute("reqAttr", ST_IntegerType) |
| 722 | |
| 723 | |
| 724 | class CT_Choice(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…