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


PHP SuiteEvent::getTime方法代码示例

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


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

示例1: afterSuite

 public function afterSuite(SuiteEvent $event)
 {
     $io = $this->getIO();
     $io->writeln();
     foreach (array('failed' => $this->getStatisticsCollector()->getFailedEvents(), 'broken' => $this->getStatisticsCollector()->getBrokenEvents(), 'skipped' => $this->getStatisticsCollector()->getSkippedEvents()) as $status => $events) {
         if (!count($events)) {
             continue;
         }
         $io->writeln(sprintf("<%s>----  %s examples</%s>\n", $status, $status, $status));
         foreach ($events as $failEvent) {
             $io->writeln(sprintf('%s', str_replace('\\', DIRECTORY_SEPARATOR, $failEvent->getSpecification()->getTitle())), 8);
             $this->afterExample($failEvent);
             $io->writeln();
         }
     }
     $io->writeln(sprintf("\n%d specs", $this->getStatisticsCollector()->getTotalSpecs()));
     $counts = array();
     foreach ($this->getStatisticsCollector()->getCountsHash() as $type => $count) {
         if ($count) {
             $counts[] = sprintf('<%s>%d %s</%s>', $type, $count, $type, $type);
         }
     }
     $io->write(sprintf("%d examples ", $this->getStatisticsCollector()->getEventsCount()));
     if (count($counts)) {
         $io->write(sprintf("(%s)", implode(', ', $counts)));
     }
     $io->writeln(sprintf("\n%sms", round($event->getTime() * 1000)));
 }
开发者ID:edwardricardo,项目名称:zenska,代码行数:28,代码来源:PrettyFormatter.php

示例2:

 function it_aggregates_testsuite_nodes_and_display_them_after_suite_run(SuiteEvent $event, $io, $stats)
 {
     $event->getTime()->willReturn(48151.62342);
     $stats->getFailedEvents()->willReturn(range(1, 12));
     $stats->getBrokenEvents()->willReturn(range(1, 3));
     $stats->getEventsCount()->willReturn(100);
     $this->setTestSuiteNodes(array('<testsuite name="specification1" tests="3">' . "\n" . '<testcase name="example1" />' . "\n" . '<testcase name="example2" />' . "\n" . '<testcase name="example3" />' . "\n" . '</testsuite>', '<testsuite name="specification2" tests="2">' . "\n" . '<testcase name="example1" />' . "\n" . '<testcase name="example2" />' . "\n" . '</testsuite>'));
     $this->afterSuite($event);
     $io->write('<?xml version="1.0" encoding="UTF-8" ?>' . "\n" . '<testsuites time="48151.623420" tests="100" failures="12" errors="3">' . "\n" . '<testsuite name="specification1" tests="3">' . "\n" . '<testcase name="example1" />' . "\n" . '<testcase name="example2" />' . "\n" . '<testcase name="example3" />' . "\n" . '</testsuite>' . "\n" . '<testsuite name="specification2" tests="2">' . "\n" . '<testcase name="example1" />' . "\n" . '<testcase name="example2" />' . "\n" . '</testsuite>' . "\n" . '</testsuites>')->shouldBeCalled();
 }
开发者ID:focuslife,项目名称:v0.1,代码行数:10,代码来源:JUnitFormatterSpec.php

示例3: afterSuite

 public function afterSuite(SuiteEvent $event)
 {
     $io = $this->getIO();
     $stats = $this->getStatisticsCollector();
     $io->freezeTemp();
     $io->writeln();
     $io->writeln(sprintf("%d specs", $stats->getTotalSpecs()));
     $counts = array();
     foreach ($stats->getCountsHash() as $type => $count) {
         if ($count) {
             $counts[] = sprintf('<%s>%d %s</%s>', $type, $count, $type, $type);
         }
     }
     $count = $stats->getEventsCount();
     $plural = $count !== 1 ? 's' : '';
     $io->write(sprintf("%d example%s ", $count, $plural));
     if (count($counts)) {
         $io->write(sprintf("(%s)", implode(', ', $counts)));
     }
     $io->writeln(sprintf("\n%sms", round($event->getTime() * 1000)));
 }
开发者ID:cordoval,项目名称:phpspec,代码行数:21,代码来源:ProgressFormatter.php

示例4: afterSuite

 /**
  * {@inheritdoc}
  */
 public function afterSuite(SuiteEvent $event)
 {
     $stats = $this->getStatisticsCollector();
     $this->getIo()->write(sprintf('<?xml version="1.0" encoding="UTF-8" ?>' . "\n" . '<testsuites time="%s" tests="%s" failures="%s" errors="%s">' . "\n" . '%s' . "\n" . '</testsuites>', $event->getTime(), $stats->getEventsCount(), count($stats->getFailedEvents()), count($stats->getBrokenEvents()), implode("\n", $this->testSuiteNodes)));
 }
开发者ID:mawaha,项目名称:tracker,代码行数:8,代码来源:JUnitFormatter.php

示例5:

 function it_outputs_a_suite_summary(SuiteEvent $event, ConsoleIO $io, StatisticsCollector $stats)
 {
     $stats->getEventsCount()->willReturn(1);
     $stats->getFailedEvents()->willReturn(array());
     $stats->getBrokenEvents()->willReturn(array());
     $stats->getPendingEvents()->willReturn(array());
     $stats->getSkippedEvents()->willReturn(array());
     $stats->getTotalSpecs()->willReturn(15);
     $event->getTime()->willReturn(12.345);
     $stats->getCountsHash()->willReturn(array('passed' => 1, 'pending' => 0, 'skipped' => 0, 'failed' => 2, 'broken' => 0));
     $this->afterSuite($event);
     $io->writeln('15 specs')->shouldHaveBeenCalled();
     $io->writeln("\n12345ms")->shouldHaveBeenCalled();
     $io->write('1 example ')->shouldHaveBeenCalled();
     $expected = '(<passed>1 passed</passed>, <failed>2 failed</failed>)';
     $io->write($expected)->shouldHaveBeenCalled();
 }
开发者ID:phpspec,项目名称:phpspec,代码行数:17,代码来源:DotFormatterSpec.php

示例6: outputSuiteSummary

 private function outputSuiteSummary(SuiteEvent $event)
 {
     $this->outputTotalSpecCount();
     $this->outputTotalExamplesCount();
     $this->outputSpecificExamplesCount();
     $this->getIO()->writeln(sprintf("\n%sms", round($event->getTime() * 1000)));
 }
开发者ID:ngitimfoyo,项目名称:Nyari-AppPHP,代码行数:7,代码来源:DotFormatter.php

示例7: afterSuite

 /**
  * @param SuiteEvent $event
  */
 public function afterSuite(SuiteEvent $event)
 {
     $io = $this->getIO();
     $stats = $this->getStatisticsCollector();
     $io->writeln("\n");
     foreach (array('failed' => $stats->getFailedEvents(), 'broken' => $stats->getBrokenEvents(), 'pending' => $stats->getPendingEvents(), 'skipped' => $stats->getSkippedEvents()) as $status => $events) {
         if (!count($events)) {
             continue;
         }
         foreach ($events as $failEvent) {
             $this->printException($failEvent);
         }
     }
     $plural = $stats->getTotalSpecs() !== 1 ? 's' : '';
     $io->writeln(sprintf("%d spec%s", $stats->getTotalSpecs(), $plural));
     $counts = array();
     foreach ($stats->getCountsHash() as $type => $count) {
         if ($count) {
             $counts[] = sprintf('<%s>%d %s</%s>', $type, $count, $type, $type);
         }
     }
     $count = $stats->getEventsCount();
     $plural = $count !== 1 ? 's' : '';
     $io->write(sprintf("%d example%s ", $count, $plural));
     if (count($counts)) {
         $io->write(sprintf("(%s)", implode(', ', $counts)));
     }
     $io->writeln(sprintf("\n%sms", round($event->getTime() * 1000)));
 }
开发者ID:HarveyCheng,项目名称:myblog,代码行数:32,代码来源:DotFormatter.php


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