add output factory test

This commit is contained in:
onyx-and-iris 2022-06-25 16:20:08 +01:00
parent 5af62715ae
commit 37a12713f0

View File

@ -0,0 +1,15 @@
package voicemeeter
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetOutputs(t *testing.T) {
//t.Skip("skipping test")
__o := newOutputs("strip", 0)
t.Run("Should return an output type", func(t *testing.T) {
assert.NotNil(t, __o)
})
}