(self)
| 442 | |
| 443 | # Implicit decoding prose test #1 |
| 444 | def test_decoding_1(self): |
| 445 | standard_binary = Binary.from_uuid(self.uuid, UuidRepresentation.STANDARD) |
| 446 | self._test_decoding( |
| 447 | "javaLegacy", UuidRepresentation.JAVA_LEGACY, standard_binary, self.uuid |
| 448 | ) |
| 449 | self._test_decoding( |
| 450 | "csharpLegacy", UuidRepresentation.CSHARP_LEGACY, standard_binary, self.uuid |
| 451 | ) |
| 452 | self._test_decoding( |
| 453 | "pythonLegacy", UuidRepresentation.PYTHON_LEGACY, standard_binary, self.uuid |
| 454 | ) |
| 455 | |
| 456 | # Implicit decoding pose test #2 |
| 457 | def test_decoding_2(self): |
nothing calls this directly
no test coverage detected