tests/Import-DbaXESessionTemplate.Tests.ps1
$CommandName = $MyInvocation.MyCommand.Name.Replace(".Tests.ps1", "") Write-Host -Object "Running $PSCommandpath" -ForegroundColor Cyan . "$PSScriptRoot\constants.ps1" Describe "$commandname Integration Tests" -Tags "IntegrationTests" { AfterAll { $null = Get-DbaXESession -SqlInstance $script:instance2 -Session db_ola_health | Stop-DbaXESession | Remove-DbaXESession } Context "Test Importing Session Template" { $results = Import-DbaXESessionTemplate -SqlInstance $script:instance2 -Template db_ola_health | Start-DbaXESession It "session imports and is running" { $results.Name | Should Be "db_ola_health" $results.Status | Should Be "Running" } } } |