Get-Test.ps1

function Get-Test {
    [CmdletBinding()]
    Param (
        [String]$Value
    )
    return $Value
}