voicemeeter/tests/helper_test.go
onyx-and-iris d3289dbb80 entry point GetRemote added
director and builder types added, one for each kind.

separates construction from representation
2022-06-25 16:22:16 +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("banana")
)
func TestMain(m *testing.M) {
vmRem.Login()
code := m.Run()
vmRem.Logout()
os.Exit(code)
}