diff --git a/voicemeeter/recorder_test.go b/voicemeeter/recorder_test.go new file mode 100644 index 0000000..7f449f9 --- /dev/null +++ b/voicemeeter/recorder_test.go @@ -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) + }) +}