本文整理汇总了PHP中pts_client::set_debug_mode方法的典型用法代码示例。如果您正苦于以下问题:PHP pts_client::set_debug_mode方法的具体用法?PHP pts_client::set_debug_mode怎么用?PHP pts_client::set_debug_mode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pts_client
的用法示例。
在下文中一共展示了pts_client::set_debug_mode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
public static function run($r)
{
// Make sure you're debugging the latest test script...
pts_test_installer::standard_install($r);
// For debugging, usually running just once is sufficient, unless FORCE_TIMES_TO_RUN is preset
pts_client::pts_set_environment_variable('FORCE_TIMES_TO_RUN', 1);
// Run the test(s) in debug mode
pts_client::set_debug_mode(true);
$test_run_manager = new pts_test_run_manager();
$test_run_manager->standard_run($r);
}
示例2: run
public static function run($r)
{
pts_client::set_debug_mode(true);
pts_test_installer::standard_install($r, true);
}