voicemeeter/outputs_test.go

16 lines
270 B
Go
Raw Normal View History

2022-06-25 16:20:08 +01:00
package voicemeeter
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetOutputs(t *testing.T) {
//t.Skip("skipping test")
__o := newOutputs("strip[0]", 0)
2022-06-25 16:20:08 +01:00
t.Run("Should return an output type", func(t *testing.T) {
assert.NotNil(t, __o)
})
}