bus mode implemented

bus mode test added to higher

#3
This commit is contained in:
onyx-and-iris
2022-06-28 17:32:03 +01:00
parent 3394c9b423
commit 0fb0daf558
3 changed files with 150 additions and 4 deletions

View File

@@ -98,6 +98,14 @@ func TestBus4Label(t *testing.T) {
})
}
func TestBus3ModeAmix(t *testing.T) {
//t.Skip("skipping test")
vmRem.Bus[3].Mode().SetAmix(true)
t.Run("Should return true when Mode().SetAmix(true)", func(t *testing.T) {
assert.True(t, vmRem.Bus[3].Mode().GetAmix())
})
}
func TestVbanInStream0On(t *testing.T) {
//t.Skip("skipping test")
vmRem.Vban.InStream[0].SetOn(true)