recorder_test added

This commit is contained in:
onyx-and-iris 2022-06-28 16:29:30 +01:00
parent d097e97dee
commit 3394c9b423

View File

@ -0,0 +1,15 @@
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)
})
}