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


PHP Assert::argument方法代码示例

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


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

示例1: run_is_true_with_four_chains

/**
 * @param int $iterations
 * @return array
 */
function run_is_true_with_four_chains($iterations)
{
    $start = microtime(true);
    for ($i = 0; $i < $iterations; $i++) {
        Assert::argument()->is_true(true)->is_true(true)->is_true(true)->is_true(true);
    }
    $end = microtime(true);
    $assert_time = $end - $start;
    $start = microtime(true);
    for ($i = 0; $i < $iterations; $i++) {
        Assert::argument()->is_true(true)->is_true(true)->is_true(true)->is_true(true);
    }
    $end = microtime(true);
    $assert_time = $end - $start;
    $start = microtime(true);
    for ($i = 0; $i < $iterations; $i++) {
        if (!(true === true)) {
            throw new InvalidArgumentException("unacceptable!");
        }
        if (!(true === true)) {
            throw new InvalidArgumentException("unacceptable!");
        }
        if (!(true === true)) {
            throw new InvalidArgumentException("unacceptable!");
        }
        if (!(true === true)) {
            throw new InvalidArgumentException("unacceptable!");
        }
    }
    $end = microtime(true);
    $base_time = $end - $start;
    return [$base_time, $assert_time, $assert_time];
}
开发者ID:tempbottle,项目名称:augmented_types,代码行数:37,代码来源:bench.php

示例2: is_trait_used

 /**
  * @param unknown $object to test
  * @param string $trait_name
  * @return bool
  */
 public static function is_trait_used($object, $trait_name)
 {
     Assert::argument()->is_object($object)->is_string($trait_name)->is_not_empty($trait_name);
     return array_key_exists($trait_name, class_uses($object));
 }
开发者ID:tempbottle,项目名称:augmented_types,代码行数:10,代码来源:Assert.php


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