(self)
| 82 | self._test_equal(i, i2) |
| 83 | |
| 84 | def test_incident(self): |
| 85 | i = Incident() |
| 86 | i.title = UNICODE_STR |
| 87 | i.description = UNICODE_STR |
| 88 | i.short_description = UNICODE_STR |
| 89 | i2 = round_trip(i) |
| 90 | self._test_equal(i, i2) |
| 91 | |
| 92 | def test_ttp(self): |
| 93 | t = TTP() |
nothing calls this directly
no test coverage detected