. */ class list_installed_tests implements pts_option_interface { public static function run($r) { echo pts_string_header("Phoronix Test Suite - Installed Tests"); foreach(pts_installed_tests_array() as $identifier) { if(pts_is_test($identifier)) { echo new pts_installed_test_details($identifier); } } echo "\n"; } } ?>