tests/functions/Get-D365ActiveAzureStorageConfig.Tests.ps1

Describe "Get-D365ActiveAzureStorageConfig 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-D365ActiveAzureStorageConfig).ParameterSets.Name | Should -Be '__AllParameterSets'
        }
        

    }
    
    Describe "Testing parameterset __AllParameterSets" {
        <#
        __AllParameterSets -
        __AllParameterSets -
        #>

    }

}