Add NullableBooleanDCR Pester Test

This commit is contained in:
TingLiu6 2016-08-08 01:46:55 -07:00
parent 031ba8795b
commit d0c62017a9

View file

@ -0,0 +1,50 @@
Describe "Nullable Boolean DCR Tests" -Tags "CI" {
BeforeAll {
function ParserTestFunction
{
param([bool]$First) $PSBoundParameters
}
function parsertest-bool2
{
[CmdletBinding()]
param (
[Parameter(Position = 0, Mandatory = $true, ValueFromPipeline = $true)] [bool]$First = $false
)
Process {
return $PSBoundParameters
}
}
$testCases = @(
@{ Arg = $true; Expected = $true }
@{ Arg = 1; Expected = $true }
@{ Arg = 1.28; Expected = $true }
@{ Arg = (-2.32); Expected = $true }
@{ Arg = $false; Expected = $false }
@{ Arg = 0; Expected = $false }
@{ Arg = 0.00; Expected = $false }
@{ Arg = (1 - 1); Expected = $false }
)
}
It 'Test a boolean parameter accepts positional values, input:<Arg>, expect:<Expected>' -TestCases $testCases {
param($Arg, $Expected)
(parsertestfunction $Arg).Values[0] | Should Be $Expected
(parsertest-bool2 $Arg).Values[0] | Should Be $Expected
}
It 'Test a boolean parameter accepts values specified with a colon, input:<Arg>, expect:<Expected>' -TestCases $testCases {
param($Arg, $Expected)
(parsertestfunction -First:$Arg).Values[0] | Should Be $Expected
(parsertest-bool2 -First:$Arg).Values[0] | Should Be $Expected
}
It 'Test a boolean parameter accepts values specified with general format, input:<Arg>, expect:<Expected>' -TestCases $testCases {
param($Arg, $Expected)
(parsertestfunction -First $Arg).Values[0] | Should Be $Expected
(parsertest-bool2 -First $Arg).Values[0] | Should Be $Expected
}
}