test/mocks/MockModuleA/src/Get-AFunction.ps1

function Get-AFunction {
    [CmdletBinding()]
    param (
        
    )
    
    Out-String -InputObject $("Hello, from Get-AFunction!")
}