(self)
| 106 | self._test_equal(t, t2) |
| 107 | |
| 108 | def test_et(self): |
| 109 | e = ExploitTarget() |
| 110 | e.title = UNICODE_STR |
| 111 | e.description = UNICODE_STR |
| 112 | e.short_description = UNICODE_STR |
| 113 | e2 = round_trip(e) |
| 114 | self._test_equal(e, e2) |
| 115 | |
| 116 | def test_campaign(self): |
| 117 | c = Campaign() |
nothing calls this directly
no test coverage detected