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