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
device_test.go
Normal file
15
device_test.go
Normal file
@@ -0,0 +1,15 @@
|
||||
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)
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user