当前位置: 首页>>代码示例>>PHP>>正文


PHP TestSuite::make_bold方法代码示例

本文整理汇总了PHP中TestSuite::make_bold方法的典型用法代码示例。如果您正苦于以下问题:PHP TestSuite::make_bold方法的具体用法?PHP TestSuite::make_bold怎么用?PHP TestSuite::make_bold使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在TestSuite的用法示例。


在下文中一共展示了TestSuite::make_bold方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: exit

/* Validate the class is known */
if (!in_array($str_class, $arr_valid_classes)) {
    echo "Error:  Valid test classes are Redis, RedisArray, and RedisCluster!\n";
    exit(1);
}
/* Toggle colorization in our TestSuite class */
TestSuite::flagColorization($boo_colorize);
/* Let the user know this can take a bit of time */
echo "Note: these tests might take up to a minute. Don't worry :-)\n";
/* Depending on the classes being tested, run our tests on it */
echo "Testing class ";
if ($str_class == 'redis') {
    echo TestSuite::make_bold("Redis") . "\n";
    exit(TestSuite::run("Redis_Test", $str_filter));
} else {
    if ($str_class == 'redisarray') {
        echo TestSuite::make_bold("RedisArray") . "\n";
        global $useIndex;
        foreach (array(true, false) as $useIndex) {
            echo "\n" . ($useIndex ? "WITH" : "WITHOUT") . " per-node index:\n";
            run_tests('Redis_Array_Test', $str_filter);
            run_tests('Redis_Rehashing_Test', $str_filter);
            run_tests('Redis_Auto_Rehashing_Test', $str_filter);
            run_tests('Redis_Multi_Exec_Test', $str_filter);
            run_tests('Redis_Distributor_Test', $str_filter);
        }
    } else {
        echo TestSuite::make_bold("RedisCluster") . "\n";
        exit(TestSuite::run("Redis_Cluster_Test", $str_filter));
    }
}
开发者ID:qmario,项目名称:phpredis-2.5.5,代码行数:31,代码来源:TestRedis.php


注:本文中的TestSuite::make_bold方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。