Tests/Integration/integration_config_template.ps1
<#
.Synopsis DSC Configuration Template for DSC Resource Integration tests. .DESCRIPTION To Use: 1. Copy to \Tests\Integration\ folder and rename <ResourceName>.config.ps1 (e.g. MSFT_xFirewall.config.ps1) 2. Customize TODO sections. .NOTES #> # TODO: Modify ResourceName (e.g. MSFT_xFirewall_config) # Integration Test Config Template Version: 1.0.0 configuration <ResourceName>_config { # TODO: Modify ModuleName (e.g. xNetworking) Import-DscResource -ModuleName '<ModuleName>' node localhost { # TODO: Modify ResourceFriendlyName (e.g. xFirewall Integration_Test) <ResourceFriendlyName> Integration_Test { # TODO: Fill Configuration Code Here } } } # TODO: (Optional): Add More Configuration Templates |