mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2025-04-03 20:33:50 +01:00
16 lines
270 B
Go
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)
|
|
})
|
|
}
|