(self, actual, expected)
| 14 | are potentially recoverable. |
| 15 | """ |
| 16 | def __init__(self, actual, expected): |
| 17 | self.value = { |
| 18 | 'ExpectedValue': expected, |
| 19 | 'ActualValue': actual, |
| 20 | } |
| 21 | |
| 22 | def __str__(self): |
| 23 | return str(self.value) |
nothing calls this directly
no outgoing calls
no test coverage detected