ISetupCheckManager
in
Tags
Table of Contents
Methods
- runAll() : array<string, array<string, SetupResult>>
- Run all setup checks and return the results.
- runByCategory() : array<string, array<string, SetupResult>>
- Run all tests from one specific category and return the results.
- runByClass() : array<string, array<string, SetupResult>>
- Run all tests from one specific class and return the results.
Methods
runAll()
Run all setup checks and return the results.
public
runAll() : array<string, array<string, SetupResult>>
Tags
Return values
array<string, array<string, SetupResult>> —Result of each check, first level key is category, second level key is title
runByCategory()
Run all tests from one specific category and return the results.
public
runByCategory(string $filterByCategory) : array<string, array<string, SetupResult>>
Parameters
- $filterByCategory : string
-
- The id of the category to run.
Tags
Return values
array<string, array<string, SetupResult>> —Result of each check, first level key is category, second level key is title
runByClass()
Run all tests from one specific class and return the results.
public
runByClass(string $filterByClass) : array<string, array<string, SetupResult>>
Parameters
- $filterByClass : string
-
- The class to run.
Tags
Return values
array<string, array<string, SetupResult>> —Result of each check, first level key is category, second level key is title