voicemeeter/tests/helper_test.go
onyx-and-iris 80a561d7fc gainlayers implemented
tests adjusted for potato.
gainlayer unit test added

factory method for bus mode added.
2022-06-28 19:30:37 +01:00

20 lines
260 B
Go

package voicemeeter_test
import (
"os"
"testing"
"github.com/onyx-and-iris/voicemeeter-api-go/voicemeeter"
)
var (
vmRem = voicemeeter.GetRemote("potato")
)
func TestMain(m *testing.M) {
vmRem.Login()
code := m.Run()
vmRem.Logout()
os.Exit(code)
}