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:
23
vban_test.go
Normal file
23
vban_test.go
Normal file
@@ -0,0 +1,23 @@
|
||||
package voicemeeter
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
)
|
||||
|
||||
func TestGetVbanInStream(t *testing.T) {
|
||||
//t.Skip("skipping test")
|
||||
__vbi := newVbanInStream(0)
|
||||
t.Run("Should return a vban instream type", func(t *testing.T) {
|
||||
assert.NotNil(t, __vbi)
|
||||
})
|
||||
}
|
||||
|
||||
func TestGetVbanOutStream(t *testing.T) {
|
||||
//t.Skip("skipping test")
|
||||
__vbo := newVbanOutStream(0)
|
||||
t.Run("Should return a vban outstream type", func(t *testing.T) {
|
||||
assert.NotNil(t, __vbo)
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user