Public/Assert-Exist.ps1

function Assert-Exist {
    param(
        [Parameter(Mandatory=$true)]
        [Alias('In')]
        $InputObject,
        [Parameter(Mandatory=$true, ValueFromPipeline = $true)]
        [Alias('Width', 'Test')]
        [string]$Key
    )

    [PSFluentObjectValidation]::AssertExists($InputObject, $Key)
}

New-Alias -Name asserts -Value Assert-Exist