PowerShell/test/powershell/Language/Scripting/Indexer.Tests.ps1
Yanbing edb292face Add tests for the Language (#2118)
DeserializedMethods, DeserializedTypeConversion,
DynamicParameters, Generics, Indexer, LindEndings, MyInvocation,
OrderedAttributeForHashTable.
2016-09-15 11:27:44 -07:00

26 lines
872 B
PowerShell

Describe 'Tests for indexers' -Tags "CI" {
It 'Indexer in dictionary' {
$hashtable = @{ "Hello"="There" }
$hashtable["Hello"] | Should Be "There"
}
It 'Accessing a Indexed property of a dictionary that does not exist should return $NULL' {
$hashtable = @{ "Hello"="There" }
$hashtable["Hello There"] | Should Be $null
}
It 'Wmi object implements an indexer' -Skip:$IsCoreCLR {
$service = Get-WmiObject -List -Amended Win32_Service
$service.Properties["DisplayName"].Name | Should Be 'DisplayName'
}
It 'Accessing a Indexed property of a wmi object that does not exist should return $NULL' -skip:$IsCoreCLR {
$service = Get-WmiObject -List -Amended Win32_Service
$service.Properties["Hello There"] | Should Be $null
}
}