Pester/Get-AppEventSound.Tests.ps1
# todo write pester for Get-AppEventSound Describe "[FN] Tests" { It "Number" { Test-Set | Should -Be 15 } It "Boolean" { Test-Set | Should -BeTrue } It "Pipeline" { "data" | Test-Set | Should -Be 'Hello' } } |