當前位置: 首頁>>代碼示例>>PHP>>正文


PHP SmartyTests::smartyBC方法代碼示例

本文整理匯總了PHP中SmartyTests::smartyBC方法的典型用法代碼示例。如果您正苦於以下問題:PHP SmartyTests::smartyBC方法的具體用法?PHP SmartyTests::smartyBC怎麽用?PHP SmartyTests::smartyBC使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在SmartyTests的用法示例。


在下文中一共展示了SmartyTests::smartyBC方法的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,代碼行數:31,代碼來源:smartytestdebug.inc.php


注:本文中的SmartyTests::smartyBC方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。