34 lines
949 B
PowerShell
34 lines
949 B
PowerShell
Describe "Get-Event" {
|
|
|
|
BeforeEach {
|
|
( New-Event -SourceIdentifier PesterTestEvent -sender Windows.timer -messagedata "PesterTestMessage" )
|
|
}
|
|
|
|
AfterEach {
|
|
( Remove-Event -SourceIdentifier PesterTestEvent -ErrorAction SilentlyContinue )
|
|
}
|
|
|
|
Context "Check return type of Get-Event" {
|
|
|
|
It "Should return PSEventArgs as return type of Get-Event" {
|
|
{ ( Get-Event -SourceIdentifier PesterTestEvent ).GetType() | Should Be System.Management.Automation.PSEventArgs }
|
|
}
|
|
}
|
|
|
|
Context "Validate Get-Event can retrieve event" {
|
|
|
|
It "Should return at least 1 event" {
|
|
{ (Get-Event).Count | Should BeGreaterThan 0 }
|
|
}
|
|
|
|
It "Should return PesterTestMessage as the MessageData" {
|
|
{ (Get-Event -SourceIdentifier PesterTimer).MessageData | Should Be "PesterTestMessage" }
|
|
}
|
|
|
|
It "Should return Sender as Windows.timer" {
|
|
{ (Get-Event -SourceIdentifier PesterTimer).Sender | Should be Windows.timer }
|
|
}
|
|
|
|
}
|
|
}
|