Update higher.Tests.ps1

pester tests pass for all types
manual tests for safety pass
- buffer.asio
This commit is contained in:
pblivingston 2025-12-01 16:41:36 -05:00
parent dd404ae337
commit 5f064de010

View File

@ -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 }