Required/Reserved/Get-QuickEnvironment.ps1

$QuickPowershellUserProfileRoot = Split-Path $profile
$QuickFunctionsRoot = "$QuickPowershellUserProfileRoot\Modules\QuickPackage\Functions"
$QuickAliasesRoot = "$QuickPowershellUserProfileRoot\Modules\QuickPackage\Aliases"
$QuickConfigurationsFile = "$QuickPowershellUserProfileRoot\Modules\QuickPackage\Configuration\Configuration.ps1"
$QuickHelpersRoot = "$QuickPowershellUserProfileRoot\Modules\QuickPackage\Required"
$QuickReservedHelpersRoot = "$QuickHelpersRoot\Reserved"
$QuickUtilityBeltFunctionsRoot = "$QuickReservedHelpersRoot\UtilityBelt\Functions"
$QuickUtilityBeltAliasesRoot = "$QuickReservedHelpersRoot\UtilityBelt\Aliases"
$QuickPowershellProfilePath = $profile
$QuickPowershellModulePath = "$QuickPowershellUserProfileRoot\Modules\QuickPackage\QuickPackage.psm1"
$QuickUtilityBeltCommandIdentifier = "##PREINSTALLED##"
$QuickImportedFunctionIdentifier = "##IMPORTED##"

function Exit-AfterImport {
    #Do Nothing -- Allows us to Mock the function to test that the import headers returned successfully
    return $false;
}

function Test-ImportCompleted {
    #Do Nothing -- Allows us to test whether the function has been called
}