public void then_the_SUT_should_write_the_file_format_specified()
 {
     using (var waveForm = new WaveformFileWaveformReader(_filePath).Read())
     {
         WaveformFormatHelper.CheckFormat(waveForm.Format, _channelsCount, _samplesPerSecond, _bitsPerSample);
     }
 }
 public void then_the_SUT_should_return_a_waveform_in_a_format_corresponding_to_the_file()
 {
     WaveformFormatHelper.CheckFormat(_waveForm.Format, _channelsCount, _samplesPerSecond, _bitsPerSample);
 }