Public/Get-SpecTestPathSwitch.ps1

function Get-SpecTestPathSwitch {
    param (
        $IgnoreTestPath
    )

    # set the ignoretestpath switch
    if ([string]::IsNullOrEmpty($IgnoreTestPath)) {
        return $false
    } elseif ($IgnoreTestPath -eq 'No') {
        return $true
    }
}