(self)
| 98 | self._test_equal(t, t2) |
| 99 | |
| 100 | def test_ta(self): |
| 101 | t = ThreatActor() |
| 102 | t.title = UNICODE_STR |
| 103 | t.description = UNICODE_STR |
| 104 | t.short_description = UNICODE_STR |
| 105 | t2 = round_trip(t) |
| 106 | self._test_equal(t, t2) |
| 107 | |
| 108 | def test_et(self): |
| 109 | e = ExploitTarget() |
nothing calls this directly
no test coverage detected