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


PHP Base::setup方法代碼示例

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


在下文中一共展示了Base::setup方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: setUp

 public function setUp()
 {
     $http = $this->getMockBuilder("\\HttpExchange\\Adapters\\Resty")->disableOriginalConstructor()->getMock();
     $http->expects($this->any())->method("get")->will($this->returnSelf());
     $http->expects($this->any())->method("getStatusCode")->will($this->onConsecutiveCalls(200, 404));
     $http->expects($this->any())->method("getBody")->will($this->returnValue((object) (object) $this->successResponse));
     $cache = $this->getMockBuilder("\\CacheExchange\\Cache")->setMethods(array("fetch", "store"))->disableOriginalConstructor()->getMock();
     $cache->expects($this->any())->method("fetch")->will($this->onConsecutiveCalls((object) $this->successResponse, false, false));
     $cache->expects($this->any())->method("store")->will($this->returnValue(true));
     $this->testClass = new \InstaHook\Client($http, $cache, "client_id", "access_token");
     parent::setup();
 }
開發者ID:johnshopkins,項目名稱:instahook,代碼行數:12,代碼來源:ClientTest.php

示例2: setUp

 public function setUp()
 {
     parent::setup();
     $_SERVER = array();
 }
開發者ID:Folcky,項目名稱:kanboard,代碼行數:5,代碼來源:ReverseProxyTest.php

示例3: setUp

 public function setUp()
 {
     parent::setup();
     self::$functions = $this->getMockBuilder('stdClass')->setMethods(array('ldap_connect', 'ldap_set_option', 'ldap_bind', 'ldap_search', 'ldap_get_entries'))->getMock();
 }
開發者ID:redarrow,項目名稱:kanboard,代碼行數:5,代碼來源:LdapTest.php

示例4: setUp

 public function setUp()
 {
     parent::setup();
     self::$functions = $this->getMockBuilder('stdClass')->setMethods(array('setcookie'))->getMock();
 }
開發者ID:peripatetic-sojourner,項目名稱:kanboard,代碼行數:5,代碼來源:RememberMeCookieTest.php

示例5: setUp

 public function setUp()
 {
     parent::setup();
     self::$functions = $this->getMockBuilder('stdClass')->setMethods(array('file_put_contents', 'file_get_contents', 'file_exists', 'mkdir', 'is_dir', 'unlink', 'rename', 'move_uploaded_file', 'readfile'))->getMock();
 }
開發者ID:hj3938,項目名稱:kanboard,代碼行數:5,代碼來源:FileStorageTest.php

示例6: setUp

 public function setUp()
 {
     parent::setup();
     self::$functions = $this->getMockBuilder('stdClass')->setMethods(array('ldap_search', 'ldap_get_entries'))->getMock();
     $this->client = $this->getMockBuilder('\\Kanboard\\Core\\Ldap\\Client')->setMethods(array('getConnection'))->getMock();
 }
開發者ID:peripatetic-sojourner,項目名稱:kanboard,代碼行數:6,代碼來源:QueryTest.php


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