Update TestsHelpers.ps1

This commit is contained in:
Maxim Lobanov
2020-07-09 14:27:06 +03:00
parent 9bd0f97777
commit 205fb1887e

View File

@@ -12,14 +12,6 @@ function Get-CommandResult {
}
}
# Gets path to the tool, analogue of 'which tool'
function Get-WhichTool {
Param (
[Parameter(Mandatory)][string] $Tool
)
return (Get-Command $Tool).Path
}
# Gets value of environment variable by the name
function Get-EnvironmentVariable($variable) {
return [System.Environment]::GetEnvironmentVariable($variable)