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