(self)
| 460 | |
| 461 | # Implicit decoding pose test #3 |
| 462 | def test_decoding_3(self): |
| 463 | expected_standard_value = Binary.from_uuid(self.uuid, UuidRepresentation.STANDARD) |
| 464 | for legacy_uuid_rep in ( |
| 465 | UuidRepresentation.PYTHON_LEGACY, |
| 466 | UuidRepresentation.CSHARP_LEGACY, |
| 467 | UuidRepresentation.JAVA_LEGACY, |
| 468 | ): |
| 469 | expected_legacy_value = Binary.from_uuid(self.uuid, legacy_uuid_rep) |
| 470 | self._test_decoding( |
| 471 | "unspecified", legacy_uuid_rep, expected_standard_value, expected_legacy_value |
| 472 | ) |
| 473 | |
| 474 | |
| 475 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected