From 5f064de01097d28abdfe7bd2b9283b560ec2668f Mon Sep 17 00:00:00 2001 From: pblivingston <71585805+pblivingston@users.noreply.github.com> Date: Mon, 1 Dec 2025 16:41:36 -0500 Subject: [PATCH] Update higher.Tests.ps1 pester tests pass for all types manual tests for safety pass - buffer.asio --- tests/higher.Tests.ps1 | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/higher.Tests.ps1 b/tests/higher.Tests.ps1 index de9825f..4c94b5c 100644 --- a/tests/higher.Tests.ps1 +++ b/tests/higher.Tests.ps1 @@ -573,6 +573,13 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' { Start-Sleep -Milliseconds 500 $vmr.option.sr | Should -Be $value } + + It 'Should set and get Option.MonitoringBus' -Skip:$ifNotPotato -ForEach @( + @{ Value = $phys_out }, @{ Value = $virt_out } + ) { + $vmr.option.monitoringbus = $value + $vmr.option.monitoringbus | Should -Be $value + } Context 'Option.buffer' -ForEach @( @{ Value = 1024 }, @{ Value = 512 }