本文整理汇总了PHP中Zend_Test_PHPUnit_ControllerTestCase::setUp方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Test_PHPUnit_ControllerTestCase::setUp方法的具体用法?PHP Zend_Test_PHPUnit_ControllerTestCase::setUp怎么用?PHP Zend_Test_PHPUnit_ControllerTestCase::setUp使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Test_PHPUnit_ControllerTestCase
的用法示例。
在下文中一共展示了Zend_Test_PHPUnit_ControllerTestCase::setUp方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: setUp
public function setUp()
{
$_SERVER['HTTP_HOST'] = 'cherbouquin';
$_SERVER['REQUEST_URI'] = 'test_request_uri';
$this->bootstrap = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
parent::setUp();
}
示例2: setUp
public function setUp()
{
$this->bootstrap = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
$this->_filesForCreate = glob($this->_getCreatePath() . '*.csv');
$this->_filesForUpdate = glob($this->_getUpdatePath() . '*.csv');
parent::setUp();
}
示例3: setUp
public function setUp()
{
$this->bootstrap = array($this, 'appBootstrap');
parent::setUp();
$this->getFrontController()->setParam('bootstrap', $this->_application->getBootstrap());
// $this->getConnection();
}
示例4: setUp
public function setUp()
{
$this->bootstrap = array($this, 'appBootstrap');
parent::setUp();
$this->userInitials = '';
$directory = dirname(__FILE__);
if (strpos($directory, 'clydes') > 1) {
$this->userInitials = 'cs';
} elseif (strpos($directory, 'aouie') > 1) {
$this->userInitials = 'ag';
} elseif (strpos($directory, 'raph') > 1) {
$this->userInitials = 'ro';
} elseif (strpos($directory, 'andrew') > 1) {
$this->userInitials = 'aa';
} elseif (strpos($directory, 'charle') > 1) {
$this->userInitials = 'cm';
} elseif (strpos($directory, 'patrick') > 1) {
$this->userInitials = 'pq';
}
// As some tests fail on date switches delay if too close to a date switch.
if (date("H:i:s") > '23:59:50') {
echo "Sleeping for 10 secs as date is about to switch.\n";
sleep(10);
}
}
示例5: setUp
public function setUp()
{
$this->bootstrap = array($this, 'appBootstrap');
parent::setUp();
Zend_Auth::getInstance()->setStorage(new Zend_Auth_Storage_NonPersistent());
$_SERVER['REMOTE_ADDR'] = '127.0.0.1';
}
示例6: setUp
public function setUp()
{
$this->appConfig = WEBSITE_PATH . '../configsGenerated/application.ini';
$this->bootstrap = new Zend_Application(APPLICATION_PROCEDURE, $this->appConfig);
ModelFactory::getInstance()->reset();
parent::setUp();
}
示例7: setUp
protected function setUp()
{
$this->initDb();
$this->setUpGcFix();
$this->resetCaches();
parent::setUp();
}
示例8: setUp
public function setUp()
{
$this->bootstrap = array($this, 'appBootstrap');
$params = array('host' => '127.0.0.1', 'username' => 'lds', 'password' => '123', 'dbname' => 'lds0019');
$db = Zend_Db::factory('PDO_MYSQL', $params);
Zend_Registry::set('db', $db);
parent::setUp();
}
示例9: setUp
public function setUp()
{
$this->stopCodeCoverage();
$this->bootstrap = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
parent::setUp();
$this->truncateAllTables(false, []);
$this->resumeCodeCoverage(false);
}
示例10: setUp
public function setUp()
{
$this->bootstrap = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
$controller = $this->getFrontController();
$controller->registerPlugin(new Rph_Controller_Plugin_LoginRequired());
parent::setUp();
$this->loginAdmin('admin', 'admin');
}
示例11: setUp
public function setUp()
{
include APPLICATION_PATH . '/../scripts/load.sqlite.php';
$application = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
$this->bootstrap = array($application->getBootstrap(), 'bootstrap');
return parent::setUp();
}
示例12: setUp
public function setUp()
{
$this->appConfig = new Zend_Config_Ini(APPLICATION_PATH . '/configs/application.ini', APPLICATION_ENV);
$this->doctrine();
$this->bootstrap = new Zend_Application(APPLICATION_ENV, APPLICATION_PATH . '/configs/application.ini');
parent::setUp();
return;
}
示例13: setUp
public function setUp ()
{
$app = new App ();
/* the following line is a Zend_Test or PHPUnit feature that
* calls $app->bootstrap. @todo: link to documentation. */
$this->bootstrap = array ($app, 'bootstrap');
parent::setUp ();
}
示例14: setUp
public function setUp()
{
// \Zend_Application: loads the autoloader
require_once 'Zend/Application.php';
// Create application, bootstrap, and run
$application = new \Zend_Application(APPLICATION_ENV, GEMS_ROOT_DIR . '/configs/application.example.ini');
$this->bootstrap = $application;
parent::setUp();
}
示例15: setUp
public function setUp()
{
$this->_logger = Zend_Registry::get('logger');
if ($this->_databaseUsage) {
$this->setupDatabase();
}
$this->bootstrap = new Zend_Application('testing', APPLICATION_PATH . '/configs/application.ini');
parent::setUp();
}