Tests/ClassUtils.Class-ClassProperty.Tests.ps1
Import-Module -Force $PSScriptRoot\..\PSClassUtils.psm1 InModuleScope PSClassUtils -ScriptBlock { Describe "Testing Class-ClassProperty" { it '[Instantiation] should create an instance without throwing' { {[ClassProperty]::New("String", "Value")} | should not throw } it '[Properties] Should have two Properties' { $Instance = [ClassProperty]::New("String", "Value") ($Instance | gm | ? {$_.MemberType -eq "Property"} | measure).Count | should be 2 } $Instance = [ClassProperty]::New("String", "Value") $Values = @("Name", "Type") Foreach ($prop in $values) { it "[Properties][$($prop)] Should be present" { ($Instance | gm | ? {$_.MemberType -eq "Property" -and $_.Name -eq $prop}).Name | should be $prop } } } } |