mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2024-11-15 17:40:51 +00:00
8ca545b1c4
getters clear dirty params sync enabled. examples and tests updated
23 lines
228 B
Go
23 lines
228 B
Go
package voicemeeter
|
|
|
|
import (
|
|
"log"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
var (
|
|
vm, err = NewRemote("potato", 30)
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
|
|
vm.Login()
|
|
code := m.Run()
|
|
vm.Logout()
|
|
os.Exit(code)
|
|
}
|