tests/functions/Set-D365ClickOnceTrustPrompt.Tests.ps1
Describe "Set-D365ClickOnceTrustPrompt Unit Tests" -Tag "Unit" { BeforeAll { # Place here all things needed to prepare for the tests } AfterAll { # Here is where all the cleanup tasks go } Describe "Ensuring unchanged command signature" { It "should have the expected parameter sets" { (Get-Command Set-D365ClickOnceTrustPrompt).ParameterSets.Name | Should -Be '__AllParameterSets' } } Describe "Testing parameterset __AllParameterSets" { <# __AllParameterSets - __AllParameterSets - #> } } |