voicemeeter/button_test.go

16 lines
257 B
Go
Raw Permalink Normal View History

package voicemeeter
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetButton(t *testing.T) {
//t.Skip("skipping test")
__mb := newButton(0)
t.Run("Should return a button type", func(t *testing.T) {
assert.NotNil(t, __mb)
})
}