mirror of
https://github.com/onyx-and-iris/voicemeeter.git
synced 2024-11-15 17:40:51 +00:00
76 lines
1.5 KiB
Go
76 lines
1.5 KiB
Go
package voicemeeter_test
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/onyx-and-iris/voicemeeter-api-go/voicemeeter"
|
|
)
|
|
|
|
var (
|
|
vmRem = voicemeeter.NewRemote("banana")
|
|
)
|
|
|
|
func TestMain(m *testing.M) {
|
|
vmRem.Login()
|
|
code := m.Run()
|
|
vmRem.Logout()
|
|
os.Exit(code)
|
|
}
|
|
|
|
func TestStrip0Mute(t *testing.T) {
|
|
//t.Skip("skipping test")
|
|
vmRem.Strip[0].SetMute(true)
|
|
if vmRem.Strip[0].GetMute() != true {
|
|
t.Error("TestStrip0Mute did not match true")
|
|
}
|
|
}
|
|
|
|
func TestStrip2Limit(t *testing.T) {
|
|
//t.Skip("skipping test")
|
|
vmRem.Strip[2].SetLimit(-8)
|
|
if vmRem.Strip[2].GetLimit() != -8 {
|
|
t.Error("TestStrip3Limit did not match -8")
|
|
}
|
|
}
|
|
|
|
func TestStrip4Label(t *testing.T) {
|
|
//t.Skip("skipping test")
|
|
vmRem.Strip[4].SetLabel("test0")
|
|
if vmRem.Strip[4].GetLabel() != "test0" {
|
|
t.Error("TestStrip4Label did not match test0")
|
|
}
|
|
}
|
|
|
|
func TestStrip5Gain(t *testing.T) {
|
|
//t.Skip("skipping test")
|
|
vmRem.Strip[4].SetGain(-20.8)
|
|
if vmRem.Strip[4].GetGain() != -20.8 {
|
|
t.Error("TestStrip5Gain did not match -20.8")
|
|
}
|
|
}
|
|
|
|
func TestStrip3Mc(t *testing.T) {
|
|
//t.Skip("skipping test")
|
|
vmRem.Strip[3].SetMc(true)
|
|
if vmRem.Strip[3].GetMc() != true {
|
|
t.Error("TestStrip3Mc did not match true")
|
|
}
|
|
}
|
|
|
|
func TestBus3Eq(t *testing.T) {
|
|
//t.Skip("skipping test")
|
|
vmRem.Bus[0].SetEq(true)
|
|
if vmRem.Bus[0].GetEq() != true {
|
|
t.Error("TestBus3Eq did not match true")
|
|
}
|
|
}
|
|
|
|
func TestBus4Label(t *testing.T) {
|
|
//t.Skip("skipping test")
|
|
vmRem.Bus[4].SetLabel("test0")
|
|
if vmRem.Bus[4].GetLabel() != "test0" {
|
|
t.Error("TestBus4Label did not match test0")
|
|
}
|
|
}
|