(original)
| 127 | ], |
| 128 | ) |
| 129 | def test_CharacterArrayCoder_roundtrip(original) -> None: |
| 130 | coder = strings.CharacterArrayCoder() |
| 131 | roundtripped = coder.decode(coder.encode(original)) |
| 132 | assert_identical(original, roundtripped) |
| 133 | |
| 134 | |
| 135 | @pytest.mark.parametrize( |
nothing calls this directly
no test coverage detected
searching dependent graphs…