(self)
| 90 | self._test_equal(i, i2) |
| 91 | |
| 92 | def test_ttp(self): |
| 93 | t = TTP() |
| 94 | t.title = UNICODE_STR |
| 95 | t.description = UNICODE_STR |
| 96 | t.short_description = UNICODE_STR |
| 97 | t2 = round_trip(t) |
| 98 | self._test_equal(t, t2) |
| 99 | |
| 100 | def test_ta(self): |
| 101 | t = ThreatActor() |
nothing calls this directly
no test coverage detected