Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
Assert
0.9.7
Axiom/src/Verify-False.ps1
function
Verify-False
{
param
(
[
Parameter
(
ValueFromPipeline
=
$true
)
]
$Actual
)
if
(
$Actual
)
{
throw
[Exception]
"Expected `$false but got '$Actual'."
}
$Actual
}