> Result of each check, first level key is category, second level key is title */ public function runAll(): array; /** * Run all tests from one specific category and return the results. * * @param string $filterByCategory - The id of the category to run. * @return array> Result of each check, first level key is category, second level key is title * @since 35.0.0 */ public function runByCategory(string $filterByCategory): array; /** * Run all tests from one specific class and return the results. * * @param string $filterByClass - The class to run. * @return array> Result of each check, first level key is category, second level key is title * @since 35.0.0 */ public function runByClass(string $filterByClass): array; }