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


PHP SmartyTests::smarty方法代码示例

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


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

示例1: clearFiles

    {
        return SmartyTests::_init($smarty);
    }
    protected function clearFiles()
    {
        SmartyTests::clearFiles();
    }
}
class _object_toString
{
    protected $string = null;
    public function __construct($string)
    {
        $this->string = (string) $string;
    }
    public function __toString()
    {
        return $this->string;
    }
}
class _object_noString
{
    protected $string = null;
    public function __construct($string)
    {
        $this->string = (string) $string;
    }
}
SmartyTests::$smarty = new \Box\Brainy\Brainy();
SmartyTests::$smartyBC = new \Box\Brainy\SmartyBC();
ini_set('date.timezone', 'UTC');
开发者ID:xiaobudongzhang,项目名称:brainy,代码行数:31,代码来源:bootstrap.php

示例2: __construct

 public function __construct()
 {
     SmartyTests::$smarty = new Smarty();
     SmartyTests::$smartyBC = new SmartyBC();
 }
开发者ID:soldotno,项目名称:smarty3,代码行数:5,代码来源:smartytestssingle.php

示例3: assertFalse

    }
    public function assertFalse($a)
    {
        if ($a !== false) {
            $this->error();
            echo '<br>result was not false';
        }
    }
    public function assertTrue($a)
    {
        if ($a !== true) {
            $this->error();
            echo '<br>result was not true';
        }
    }
    public function assertNull($a)
    {
        if ($a !== null) {
            $this->error();
            echo '<br>result was not "null"';
        }
    }
    public function error()
    {
        echo '<br><br><br>ERROR in test:  ' . get_class($this) . '::' . $this->current_function;
        $this->error_functions[] = $this->current_function;
    }
}
SmartyTests::$smartyBC = new SmartyBC();
SmartyTests::$smarty = new Smarty();
开发者ID:noiselabs,项目名称:smarty,代码行数:30,代码来源:smartytestdebug.inc.php


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