Tests/Integration/MSFT_xGroupResource_NoMembers.config.ps1
param ( [Parameter(Mandatory = $true)] [System.String] $ConfigurationName ) Configuration $ConfigurationName { param ( [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [System.String] $GroupName, [ValidateSet('Present', 'Absent')] [ValidateNotNullOrEmpty()] [System.String] $Ensure = 'Present' ) Import-DscResource -ModuleName 'xPSDesiredStateConfiguration' xGroup Group3 { GroupName = $GroupName Ensure = $Ensure } } |