We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78c848e commit ae89fe1Copy full SHA for ae89fe1
Tests/PSScriptAnalyzerTestHelper.psm1
@@ -38,7 +38,15 @@ Function Test-PSEditionCoreCLRLinux
38
(Test-PSEditionCoreCLR) -and $IsLinux
39
}
40
41
+Function Get-Count
42
+{
43
+ Begin {$count = 0}
44
+ Process {$count++}
45
+ End {$count}
46
+}
47
+
48
Export-ModuleMember -Function Get-ExtentText
49
Export-ModuleMember -Function Test-CorrectionExtent
50
Export-ModuleMember -Function Test-PSEditionCoreCLR
-Export-ModuleMember -Function Test-PSEditionCoreCLRLinux
51
+Export-ModuleMember -Function Test-PSEditionCoreCLRLinux
52
+Export-ModuleMember -Function Get-Count
0 commit comments