Go-based FM stereo transmitter with RDS, Windows-first and cross-platform
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 line
227B

  1. package audio
  2. import "testing"
  3. func TestToneSourceNextFrame(t *testing.T) {
  4. src := NewToneSource(48000)
  5. a := src.NextFrame()
  6. b := src.NextFrame()
  7. if a == b {
  8. t.Fatal("expected varying frames")
  9. }
  10. }