Tests/Session/Test-SessionElevation.Tests.ps1

BeforeAll {

    Set-StrictMode -Version "Latest"

    . "$PSScriptRoot\..\..\Source\Session\Test-SessionElevation.ps1"

}

Describe "Test-SessionElevation" {

    It "Returns a boolean" {

        $result = Test-SessionElevation

        $result | Should -BeOfType [bool]

    }

}