Test data builder for CT_TextCharacterProperties XML element that appears as child of and child of .
| 31 | |
| 32 | |
| 33 | class CT_TextCharacterPropertiesBuilder(BaseBuilder): |
| 34 | """ |
| 35 | Test data builder for CT_TextCharacterProperties XML element that appears |
| 36 | as <a:endParaRPr> child of <a:p> and <a:rPr> child of <a:r>. |
| 37 | """ |
| 38 | |
| 39 | __nspfxs__ = ("a",) |
| 40 | __attrs__ = ("b", "i", "sz", "u") |
| 41 | |
| 42 | def __init__(self, tag): |
| 43 | self.__tag__ = tag |
| 44 | super(CT_TextCharacterPropertiesBuilder, self).__init__() |
| 45 | |
| 46 | |
| 47 | class CT_TextParagraphBuilder(BaseBuilder): |
no outgoing calls
no test coverage detected
searching dependent graphs…