mirror of
https://github.com/onyx-and-iris/voicemeeter-api-powershell.git
synced 2026-04-09 17:33:33 +00:00
pitch class
- pitch class added to physical strips prelim pester tests for potato pass manual test for potato passes - recallpreset()
This commit is contained in:
@@ -39,6 +39,13 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' {
|
||||
$vmr.strip[$index].vaio = $value
|
||||
$vmr.strip[$index].vaio | Should -Be $expected
|
||||
}
|
||||
|
||||
Context 'Pitch' -Skip:$ifNotPotato {
|
||||
It "Should set Strip[$index].Pitch.On" {
|
||||
$vmr.strip[$index].pitch.on = $value
|
||||
$vmr.strip[$index].pitch.on | Should -Be $expected
|
||||
}
|
||||
}
|
||||
|
||||
Context 'Eq' -Skip:$ifNotPotato -ForEach @(
|
||||
@{ Eq = $vmr.strip[$index].eq }
|
||||
@@ -332,6 +339,33 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' {
|
||||
}
|
||||
}
|
||||
|
||||
Context 'Pitch' -Skip:$ifNotPotato {
|
||||
It "Should set Strip[$index].Pitch.drywet" {
|
||||
$vmr.strip[$index].pitch.drywet = $slide
|
||||
$vmr.strip[$index].pitch.drywet | Should -Be $slide
|
||||
}
|
||||
|
||||
It "Should set Strip[$index].Pitch.pitchvalue" {
|
||||
$vmr.strip[$index].pitch.pitchvalue = $slide
|
||||
$vmr.strip[$index].pitch.pitchvalue | Should -Be $slide
|
||||
}
|
||||
|
||||
It "Should set Strip[$index].Pitch.loformant" {
|
||||
$vmr.strip[$index].pitch.loformant = $slide
|
||||
$vmr.strip[$index].pitch.loformant | Should -Be $slide
|
||||
}
|
||||
|
||||
It "Should set Strip[$index].Pitch.medformant" {
|
||||
$vmr.strip[$index].pitch.medformant = $slide
|
||||
$vmr.strip[$index].pitch.medformant | Should -Be $slide
|
||||
}
|
||||
|
||||
It "Should set Strip[$index].Pitch.hiformant" {
|
||||
$vmr.strip[$index].pitch.hiformant = $slide
|
||||
$vmr.strip[$index].pitch.hiformant | Should -Be $slide
|
||||
}
|
||||
}
|
||||
|
||||
Context 'Audibility' -Skip:$ifNotBasic {
|
||||
It "Should set Strip[$index].Audibility" {
|
||||
$vmr.strip[$index].audibility.knob = $knob
|
||||
|
||||
Reference in New Issue
Block a user