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


PHP TestBase::setUp方法代码示例

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


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

示例1: setUp

 /**
  * Set up.
  */
 function setUp()
 {
     parent::setUp();
     $this->createRequest("debug_clear")->exec();
     $r = $this->createRequest("new_address")->exec();
     $this->address = $r["address"];
 }
开发者ID:limikael,项目名称:blockchainwalletmock,代码行数:10,代码来源:TransactionTest.php

示例2: setUp

 public function setUp()
 {
     parent::setUp();
     // Set the languages
     config()->set('translatable.locales', ['en', 'tr']);
     $this->setUpNodeType();
 }
开发者ID:NuclearCMS,项目名称:Hierarchy,代码行数:7,代码来源:NodeTest.php

示例3: setUp

 public function setUp()
 {
     parent::setUp();
     $this->path = FIXTURES . DS . 'tests';
     $this->bootstrap = dirname(FIXTURES) . DS . 'bootstrap.php';
     $this->phpunitWrapper = PARATEST_ROOT . '/bin/phpunit-wrapper';
 }
开发者ID:bruno-arsene,项目名称:paratest,代码行数:7,代码来源:WorkerTest.php

示例4: setUp

 public function setUp()
 {
     parent::setUp();
     if (!self::$connectionSet) {
         LudoDb::setConnectionType('PDO');
     }
 }
开发者ID:manishkhanchandani,项目名称:mkgxy,代码行数:7,代码来源:PDOTests.php

示例5: setUp

 public function setUp()
 {
     parent::setUp();
     $this->setUpNodeType();
     NodeSource::flushEventListeners();
     NodeSource::boot();
 }
开发者ID:NuclearCMS,项目名称:Hierarchy,代码行数:7,代码来源:NodeSourceTest.php

示例6: setUp

 public function setUp()
 {
     parent::setUp();
     // Let the current user do anything.
     global $current_user;
     $current_user->add_cap('promote_users');
 }
开发者ID:gitter-badger,项目名称:tabulate-1,代码行数:7,代码来源:ReportsTest.php

示例7: setUp

 public function setUp()
 {
     parent::setUp();
     $g = new TestGame();
     $g->drop()->yesImSure();
     $g->createTable();
 }
开发者ID:manishkhanchandani,项目名称:mkgxy,代码行数:7,代码来源:AccessorTest.php

示例8: setUp

 public function setUp()
 {
     parent::setUp();
     $s = new Section();
     $s->drop()->yesImSure();
     $s->createTable();
 }
开发者ID:manishkhanchandani,项目名称:mkgxy,代码行数:7,代码来源:ColumnAliasTest.php

示例9: setUp

 public function setUp()
 {
     parent::setUp();
     // We do this due to a bug
     // otherwise helper is not loaded
     app()->make('settings');
 }
开发者ID:kenarkose,项目名称:settlement,代码行数:7,代码来源:SettingHelperTest.php

示例10: setUp

 public function setUp()
 {
     parent::setUp();
     LudoDB::setConnectionType('PDO');
     $this->startTimer();
     $person = new Person();
     $person->deleteTableData();
 }
开发者ID:manishkhanchandani,项目名称:mkgxy,代码行数:8,代码来源:PerformanceTest.php

示例11: setUp

 /**
  * {@inheritdoc}
  */
 protected function setUp()
 {
     parent::setUp();
     static::skipIfCodeCoverageNotEnabled();
     $this->targetDir = str_replace('.', '_', uniqid('/tmp/paratest-', true));
     $this->removeDirectory($this->targetDir);
     mkdir($this->targetDir);
 }
开发者ID:brianium,项目名称:paratest,代码行数:11,代码来源:CoverageMergerTest.php

示例12: setUp

 public function setUp()
 {
     parent::setUp();
     $this->root = vfsStream::setup('root_dir', null, ['foo.txt' => 'foobar', 'bar.php' => '<?php echo "bar";']);
     vfsStream::newFile('large.txt')->withContent(LargeFileContent::withMegabytes(100))->at($this->root);
     app()['path.upload'] = vfsStream::url('root_dir') . '/upload';
     $this->uploadService = app()->make('transit.upload');
 }
开发者ID:kenarkose,项目名称:transit,代码行数:8,代码来源:UploadServiceTest.php

示例13: setUp

 public function setUp()
 {
     parent::setUp();
     $p = new PersonForUtility();
     if ($p->exists()) {
         $p->drop()->yesImSure();
     }
     $p->createTable();
 }
开发者ID:manishkhanchandani,项目名称:mkgxy,代码行数:9,代码来源:LudoDBUtilityTest.php

示例14: setUp

 public function setUp()
 {
     parent::setUp();
     $car = new Car();
     $car->drop()->yesImSure();
     $car->createTable();
     $pr = new CarProperty();
     $pr->drop()->yesImSure();
     $pr->createTable();
 }
开发者ID:manishkhanchandani,项目名称:mkgxy,代码行数:10,代码来源:CollectionTest.php

示例15: setUp

 public function setUp()
 {
     parent::setUp();
     $c = new LudoDBCache();
     $c->drop()->yesImSure();
     $c->createTable();
     $c = new Capital();
     $c->drop()->yesImSure();
     $c->createTable();
 }
开发者ID:manishkhanchandani,项目名称:mkgxy,代码行数:10,代码来源:CacheTest.php


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