(self)
| 66 | |
| 67 | @silence_warnings |
| 68 | def test_stix_header(self): |
| 69 | header = STIXHeader() |
| 70 | header.title = UNICODE_STR |
| 71 | header.description = UNICODE_STR |
| 72 | header.short_description = UNICODE_STR |
| 73 | header2 = round_trip(header) |
| 74 | self._test_equal(header, header2) |
| 75 | |
| 76 | def test_indicator(self): |
| 77 | i = Indicator() |
nothing calls this directly
no test coverage detected