(self)
| 5 | |
| 6 | class TestTorchaudio(unittest.TestCase): |
| 7 | def test_import(self): |
| 8 | waveform, sample_rate = torchaudio.load('/input/tests/data/test.wav') |
| 9 | |
| 10 | self.assertEqual(2, len(waveform)) |
| 11 | self.assertEqual(44100, sample_rate) |
nothing calls this directly
no outgoing calls
no test coverage detected