(self, input_io, output_io, sample_rate, bit_rate, tencent=True)
| 726 | self.calls = [] |
| 727 | |
| 728 | def encode(self, input_io, output_io, sample_rate, bit_rate, tencent=True): |
| 729 | self.calls.append({"sample_rate": sample_rate, "tencent": tencent}) |
| 730 | output_io.write(b"\x02#!SILK_V3") |
| 731 | |
| 732 | |
| 733 | @pytest.mark.asyncio |
no test coverage detected