File size: 1,276 Bytes
8c763fb | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | # Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
Describe "Get-PSBreakpoint" -Tags "CI" {
$scriptName = "Get-PSBreakpoint.Tests.ps1"
$fullScriptPath = Join-Path -Path $PSScriptRoot -ChildPath $scriptName
AfterEach {
Get-PSBreakpoint -Script $fullScriptPath | Remove-PSBreakpoint
}
It "should be able to get PSBreakpoint with using Id switch" {
Set-PSBreakpoint -Script $fullScriptPath -Line 1
{ Get-PSBreakpoint -Script $fullScriptPath } | Should -Not -Throw
$Id = (Get-PSBreakpoint -Script $fullScriptPath).Id
# if breakpoints have been set by other tests, the number may or may not be 0
# so we can't check against a specific number
# however, we can be sure that we're getting an int and that the int is
# greater or equal to 0
([int]$Id) -ge 0 | Should -BeTrue
}
It "should be able to get PSBreakpoint with using Variable switch" {
Set-PSBreakpoint -Script $fullScriptPath -Variable "$scriptName"
{ Get-PSBreakpoint -Variable "$scriptName" -Script $fullScriptPath } | Should -Not -Throw
$Id = (Get-PSBreakpoint -Variable "$scriptName" -Script $fullScriptPath).Variable
$Id | Should -Be $scriptName
}
}
|