(self)
| 74 | self._test_equal(header, header2) |
| 75 | |
| 76 | def test_indicator(self): |
| 77 | i = Indicator() |
| 78 | i.title = UNICODE_STR |
| 79 | i.description = UNICODE_STR |
| 80 | i.short_description = UNICODE_STR |
| 81 | i2 = round_trip(i) |
| 82 | self._test_equal(i, i2) |
| 83 | |
| 84 | def test_incident(self): |
| 85 | i = Incident() |
nothing calls this directly
no test coverage detected