mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2024-11-15 17:40:51 +00:00
16 lines
257 B
Go
16 lines
257 B
Go
|
package voicemeeter
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestGetCommand(t *testing.T) {
|
||
|
//t.Skip("skipping test")
|
||
|
__c := newCommand()
|
||
|
t.Run("Should return a command type", func(t *testing.T) {
|
||
|
assert.NotNil(t, __c)
|
||
|
})
|
||
|
}
|