Tests/Integration/MSFT_xMountImage_mount.config.ps1

configuration MSFT_xMountImage_Mount_Config {

    Import-DscResource -ModuleName xStorage

    node localhost {
        xMountImage Integration_Test {
            ImagePath          = $Node.ImagePath
            DriveLetter        = $Node.DriveLetter
            Ensure             = 'Present'
        }
    }
}