Functions/PoShMon.Monitoring.OS/Get-OSTests.ps1

Function Get-OSTests
{
    [CmdletBinding()]
    Param(
    )

    $tests = [string[]]@(
        "EventLogs",
        "CPULoad",
        "Memory",
        "DriveSpace",
        "ComputerTime",
        "ServiceState"
    )

    return $tests
}