voicemeeter/outputs_test.go
onyx-and-iris 70d69f5599 package module moved into root of repository.
example in readme updated.

level pooler implemented, runs in its own goroutine.

Remote type now exported

observers example updated.
2022-07-09 19:01:58 +01:00

16 lines
270 B
Go

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