tests/functions/Enable-D365Exception.Tests.ps1
Describe "Enable-D365Exception 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 Enable-D365Exception).ParameterSets.Name | Should -Be '__AllParameterSets' } } Describe "Testing parameterset __AllParameterSets" { <# __AllParameterSets - __AllParameterSets - #> } } |