voicemeeter/recorder_test.go

16 lines
262 B
Go
Raw Permalink Normal View History

2022-06-28 16:29:30 +01:00
package voicemeeter
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetRecorder(t *testing.T) {
//t.Skip("skipping test")
__rec := newRecorder()
t.Run("Should return a button type", func(t *testing.T) {
assert.NotNil(t, __rec)
})
}