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


PHP SuiteEvent::getSuite方法代码示例

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


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

示例1:

 function it_records_how_many_specs_are_in_the_suite(SuiteEvent $suiteEvent, Suite $suite, SpecificationNode $spec)
 {
     $suiteEvent->getSuite()->willReturn($suite);
     $suite->getSpecifications()->willReturn(array($spec));
     $this->beforeSuite($suiteEvent);
     $this->getTotalSpecsCount()->shouldReturn(1);
 }
开发者ID:EnmanuelCode,项目名称:backend-laravel,代码行数:7,代码来源:StatisticsCollectorSpec.php

示例2:

 function it_outputs_the_progress_every_50_examples(ExampleEvent $exampleEvent, SuiteEvent $suiteEvent, ConsoleIO $io, StatisticsCollector $stats)
 {
     $exampleEvent->getResult()->willReturn(ExampleEvent::PASSED);
     $suiteEvent->getSuite()->willReturn(range(1, 100));
     $stats->getEventsCount()->willReturn(50);
     $this->beforeSuite($suiteEvent);
     $this->afterExample($exampleEvent);
     $io->write('  50 / 100')->shouldHaveBeenCalled();
 }
开发者ID:phpspec,项目名称:phpspec,代码行数:9,代码来源:DotFormatterSpec.php

示例3: beforeSuite

 public function beforeSuite(SuiteEvent $suiteEvent)
 {
     $this->totalSpecsCount = count($suiteEvent->getSuite()->getSpecifications());
 }
开发者ID:EnmanuelCode,项目名称:backend-laravel,代码行数:4,代码来源:StatisticsCollector.php

示例4: beforeSuite

 /**
  *
  * @param SuiteEvent $event        	
  */
 public function beforeSuite(SuiteEvent $event)
 {
     $this->examplesCount = count($event->getSuite());
 }
开发者ID:ngitimfoyo,项目名称:Nyari-AppPHP,代码行数:8,代码来源:DotFormatter.php

示例5: beforeSuite

 /**
  * @param SuiteEvent $event
  */
 public function beforeSuite(SuiteEvent $event)
 {
     $this->examplesCount = count($event->getSuite());
     $this->getIO()->writeln($this->teamCityMessage("testCount", array("count" => $this->examplesCount)));
 }
开发者ID:ascii-soup,项目名称:phpspec-teamcity-formatter,代码行数:8,代码来源:TeamCityFormatter.php

示例6: beforeSuite

 public function beforeSuite(SuiteEvent $event)
 {
     $this->enabled = $this->maxSpecs >= count($event->getSuite()->getSpecifications());
 }
开发者ID:addvilz,项目名称:phpspec-cover,代码行数:4,代码来源:Listener.php


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