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


PHP BaseTestCase::setUp方法代碼示例

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


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

示例1: setUp

 /**
  * Prepares the environment before running a test.
  */
 protected function setUp()
 {
     parent::setUp();
     $this->setApplicationConstants();
     // TODO Auto-generated MailTest::setUp()
     $this->RW_Mail = new RW_Mail();
 }
開發者ID:realejo,項目名稱:library-zf1,代碼行數:10,代碼來源:MailTest.php

示例2: setUp

 public function setUp()
 {
     parent::setUp();
     $this->status_column = 'status';
     $this->moderated_at_column = 'moderated_at';
     Post::$strictModeration = true;
 }
開發者ID:cryptixcoder,項目名稱:laravel-moderation,代碼行數:7,代碼來源:ModerationTraitTest.php

示例3: setUp

 protected function setUp()
 {
     parent::setUp();
     $this->c = new Criteria();
     $this->savedAdapter = Propel::getDB(null);
     Propel::setDB(null, new DBSQLite());
 }
開發者ID:kalaspuffar,項目名稱:php-orm-benchmark,代碼行數:7,代碼來源:CriteriaCombineTest.php

示例4: setUp

 public function setUp()
 {
     parent::setUp();
     $this->posts = new PostRepository();
     $this->artisan('migrate', ['--database' => 'testbench', '--realpath' => realpath(__DIR__ . '/../migrations')]);
     $this->withFactories(realpath(__DIR__ . '/../factories'));
 }
開發者ID:dannyweeks,項目名稱:laravel-base-repository,代碼行數:7,代碼來源:EloquentIntegrationTest.php

示例5: setup

 /**
  * Initialisation of config object
  *
  * @author 	Eddie Jaoude
  * @param 	null
  * @return 	null
  *
  */
 public function setup()
 {
     parent::setUp();
     $this->assertEquals(TRUE, is_object($this->_em));
     $this->model = $this->_em->getRepository('Auth_Model_Account');
     $this->appConfigAuth = new Zend_Config_Ini(APPLICATION_PATH . '/modules/auth/configs/auth.ini', APPLICATION_ENV);
 }
開發者ID:MarS2806,項目名稱:Zend-Framework--Doctrine-ORM--PHPUnit--Ant--Jenkins-CI--TDD-,代碼行數:15,代碼來源:AccountTest.php

示例6: setUp

 /**
  * Prepares the environment before running a test.
  */
 protected function setUp()
 {
     parent::setUp();
     require_once 'web\\WindForward.php';
     require_once 'viewer\\WindView.php';
     $this->WindForward = new WindForward();
 }
開發者ID:jellycheng,項目名稱:windframework,代碼行數:10,代碼來源:WindForwardTest.php

示例7: setUp

 public function setUp()
 {
     parent::setUp();
     require_once 'base\\WindActionException.php';
     require_once 'base\\WindErrorMessage.php';
     $this->errorMessage = new WindErrorMessage("error", "errorAction");
 }
開發者ID:jellycheng,項目名稱:windframework,代碼行數:7,代碼來源:WindActionExceptionTest.php

示例8: setUp

 public function setUp()
 {
     parent::setUp();
     MysqlUser::executeSchema();
     MysqlBook::executeSchema();
     MysqlRole::executeSchema();
 }
開發者ID:Symfomany,項目名稱:laravel-mongo,代碼行數:7,代碼來源:MysqlRelationsTest.php

示例9: setUp

 public function setUp()
 {
     parent::setUp();
     $this->clickElement("id", "system");
     $this->clickElement("id", "company-sub-link");
     $this->wait(1000);
 }
開發者ID:gpawlik,項目名稱:laravel-projects-codebase,代碼行數:7,代碼來源:CompanyBaseTestCase.php

示例10: setUp

 public function setUp()
 {
     parent::setUp();
     if (!isset($GLOBALS['PHPUNIT_SA_LEARN_ENABLED']) || $GLOBALS['PHPUNIT_SA_LEARN_ENABLED'] == 0) {
         $this->markTestSkipped('To test the learning behavior, enable the TELL ' . 'command in SpamAssassin and update phpunit.xml');
     }
 }
開發者ID:perk11,項目名稱:php-spamassassin,代碼行數:7,代碼來源:RevokeTest.php

示例11: setUp

 public function setUp()
 {
     parent::setUp();
     \DB::enableQueryLog();
     $this->artisan('migrate', ['--database' => 'testbench', '--realpath' => realpath(__DIR__ . '/../migrations')]);
     $this->withFactories(realpath(__DIR__ . '/../factories'));
     $this->repo = new CachingRepository();
 }
開發者ID:dannyweeks,項目名稱:laravel-base-repository,代碼行數:8,代碼來源:CachingTraitTest.php

示例12: setUp

 /**
  * Prepares the environment before running a test.
  */
 protected function setUp()
 {
     parent::setUp();
     $this->dropTables()->createTables();
     $this->Db = new RW_App_Model_Db($this->tableName, $this->tableKeyName);
     // Remove as pastas criadas
     $this->setApplicationConstants()->clearApplicationData();
 }
開發者ID:realejo,項目名稱:library-zf1,代碼行數:11,代碼來源:DbTest.php

示例13: setUp

 /**
  * Prepares the environment before running a test.
  */
 protected function setUp()
 {
     parent::setUp();
     // Verifica se a pasta do APPLICATION DATA
     $this->setApplicationConstants()->clearApplicationData();
     // TODO Auto-generated RW_App_Model_UploadTest::setUp()
     $this->RW_App_Model_Upload = new RW_App_Model_Upload();
 }
開發者ID:realejo,項目名稱:library-zf1,代碼行數:11,代碼來源:UploadTest.php

示例14: setUp

 /**
  * Prepares the environment before running a test.
  */
 protected function setUp()
 {
     parent::setUp();
     // Não inicializa o APPLICATION_DATA pois alguns testes exigem que ele não exista
     //@todo é possível ser condicional? teste case separado?
     // Remove as pastas criadas
     //$this->clearApplicationData();
 }
開發者ID:realejo,項目名稱:library-zf1,代碼行數:11,代碼來源:CacheTest.php

示例15: setUp

 public function setUp()
 {
     parent::setUp();
     $this->data = new Matrix(10, 10);
     $this->data->set(1, 1, 0);
     $this->data->set(1, 2, 0);
     $this->board = new Battleships\Board($this->data);
 }
開發者ID:plamen-paskov,項目名稱:battleships,代碼行數:8,代碼來源:BoardTest.php


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