mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2024-11-15 17:40:51 +00:00
70d69f5599
example in readme updated. level pooler implemented, runs in its own goroutine. Remote type now exported observers example updated.
16 lines
258 B
Go
16 lines
258 B
Go
package voicemeeter
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGetDevice(t *testing.T) {
|
|
//t.Skip("skipping test")
|
|
__dev := newDevice()
|
|
t.Run("Should return a button type", func(t *testing.T) {
|
|
assert.NotNil(t, __dev)
|
|
})
|
|
}
|