This is useful when you want to maintain backward compatibility when renaming functions in a module so that old code can still use the old name.
New-Alias -Name "Get-Policy" -Value "Get-PolicyById"
AliasesToExport = @(
"Get-TimeRangeIsValid"
)
Describe '<_>' -ForEach @('Test-TimeRangeIsValid', 'Get-TimeRangeIsValid') {