tests/functions/Set-D365RsatTier2Crypto.Tests.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
Describe "Set-D365RsatTier2Crypto 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-D365RsatTier2Crypto).ParameterSets.Name | Should -Be '__AllParameterSets' } } Describe "Testing parameterset __AllParameterSets" { <# __AllParameterSets - __AllParameterSets - #> } } |