`` `` element, an invented element for use in testing.
| 483 | |
| 484 | |
| 485 | class CT_Parent(BaseOxmlElement): |
| 486 | """ |
| 487 | ``<p:parent>`` element, an invented element for use in testing. |
| 488 | """ |
| 489 | |
| 490 | eg_zooChoice = ZeroOrOneChoice( |
| 491 | (Choice("p:choice"), Choice("p:choice2")), |
| 492 | successors=("p:oomChild", "p:oooChild"), |
| 493 | ) |
| 494 | oomChild = OneOrMore("p:oomChild", successors=("p:oooChild", "p:zomChild", "p:zooChild")) |
| 495 | oooChild = OneAndOnlyOne("p:oooChild") |
| 496 | zomChild = ZeroOrMore("p:zomChild", successors=("p:zooChild",)) |
| 497 | zooChild = ZeroOrOne("p:zooChild", successors=()) |
| 498 | optAttr = OptionalAttribute("p:optAttr", ST_IntegerType) |
| 499 | reqAttr = RequiredAttribute("reqAttr", ST_IntegerType) |
| 500 | |
| 501 | |
| 502 | class CT_Choice(BaseOxmlElement): |
nothing calls this directly
no test coverage detected
searching dependent graphs…