mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2026-04-18 05:23:31 +00:00
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.
This commit is contained in:
15
outputs_test.go
Normal file
15
outputs_test.go
Normal 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]", 0)
|
||||
t.Run("Should return an output type", func(t *testing.T) {
|
||||
assert.NotNil(t, __o)
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user