bbebf2f76a
- Pester source code moved to `test/Pester`, deleted `ext-src`. - Pester tests (.ps1 files) moved to `test/powershell` - xUnit tests (.cs files) moved to `test/csharp` - Third-party script test moved to `test/shebang`
34 lines
1001 B
PowerShell
34 lines
1001 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 }
|
|
}
|
|
|
|
}
|
|
}
|