a20afb5822
* add parameter list argument * add tests * fix test and add doc * correct test file * fix typo * fix tests * fix typo in file name * correct file name reverting the previous commit * correct property name * add checkmode message * changes as per review comments * variable casing and other review comment changes * define $test_parameters_check_mode_msg variable
18 lines
492 B
PowerShell
18 lines
492 B
PowerShell
Param(
|
|
$Service,
|
|
$Process
|
|
)
|
|
|
|
Describe "Process should exist" {
|
|
it "Process $Process should be running" -Skip:([String]::IsNullOrEmpty($Process)) {
|
|
Get-Process -Name $Process -ErrorAction SilentlyContinue | Should Not BeNullOrEmpty
|
|
}
|
|
}
|
|
|
|
|
|
|
|
Describe "Service should exist" -tag Service {
|
|
it "Service $Service should exist" -Skip:([String]::IsNullOrEmpty($Service)) {
|
|
Get-Service -Name $Service -ErrorAction SilentlyContinue | Should Not BeNullOrEmpty
|
|
}
|
|
}
|