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


PHP SimpleReporter::paintCaseEnd方法代码示例

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


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

示例1: paintCaseEnd

 /**
  *    Paints the end of a test case. Will paint the page
  *    footer if the stack of tests has unwound.
  *    @param string $test_name   Name of test that is ending.
  *    @access public
  */
 public function paintCaseEnd($test_name)
 {
     parent::paintCaseEnd($test_name);
     //echo '<strong>Test Case: "' . $test_name . '" finished.</strong><br />';
     echo '</div>';
     flush();
 }
开发者ID:ivantcholakov,项目名称:Bonfire,代码行数:13,代码来源:my_reporter.php

示例2: run

 /**
  *    Invokes run() on all of the held test cases, instantiating
  *    them if necessary.
  *    @param SimpleReporter $reporter    Current test reporter.
  *    @param int $port Port to report test results on
  *    @access public
  */
 function run(&$reporter, $port)
 {
     $count = count($this->_test_cases);
     for ($i = 0; $i < $count; $i++) {
         if (is_string($this->_test_cases[$i])) {
             $class = $this->_test_cases[$i];
             $test =& new $class();
             ob_start();
             $reporter->paintGroupStart($this->getLabel(), $this->getSize());
             $reporter->paintCaseStart($test->getLabel());
             $start = ob_get_contents();
             ob_end_clean();
             ob_start();
             $reporter->paintCaseEnd($test->getLabel());
             $reporter->paintGroupEnd($this->getLabel());
             $end = ob_get_contents();
             ob_end_clean();
             //the guts from SimpleTestCase::run($reporter) where
             $test->_runner = new EclipseRunner($test, $reporter, $start, $end, $port);
             $test->_runner->run();
             $output = $start;
             if ($i + 1 == $count) {
                 $output .= "<done/>";
             }
             $output .= $end;
             $sock = new SimpleSocket("127.0.0.1", $port, 5);
             $sock->write($output);
             $sock->close();
             echo $sock->getError();
         } else {
             $this->_test_cases[$i]->run($reporter, $port);
         }
     }
     return $reporter->getStatus();
 }
开发者ID:sebs,项目名称:simpletest,代码行数:42,代码来源:eclipsetest.php

示例3: paintEnd

 /**
  *    Signals the appropriate end event on the
  *    listener.
  *    @param SimpleReporter $listener    Target for events.
  *    @access public
  */
 function paintEnd(&$listener)
 {
     $listener->paintCaseEnd($this->getName());
 }
开发者ID:BackupTheBerlios,项目名称:limb-svn,代码行数:10,代码来源:xml.php

示例4: paintCaseEnd

 /**
  * acceptor for end of test case
  */
 public function paintCaseEnd($message)
 {
     parent::paintCaseEnd($message);
     $node = $this->_stack->pop();
     $current = $this->_stack->peek();
     if ($node->isFailed()) {
         $current->fail();
     }
     $current->putChild($node);
 }
开发者ID:guicara,项目名称:simpletest,代码行数:13,代码来源:treemap_recorder.php

示例5: paintCaseEnd

 /**
  * @param string $testName
  */
 public function paintCaseEnd($testName)
 {
     parent::paintCaseEnd($testName);
     $this->junitXMLWriter->endTestSuite();
     $this->caseStarted = false;
 }
开发者ID:rsky,项目名称:stagehand-testrunner,代码行数:9,代码来源:JUnitXMLReporter.php

示例6: paintCaseEnd

 /**
  *  テストケース終了
  *
  *  @access public
  *  @param string   $test_name  テスト名称
  */
 function paintCaseEnd($test_name)
 {
     parent::paintCaseEnd($test_name);
     $this->report[] = array('type' => 'CaseEnd');
 }
开发者ID:hiroki-namekawa,项目名称:test-upr,代码行数:11,代码来源:Ethna_UnitTestReporter.php

示例7: paintCaseEnd

 function paintCaseEnd($test_name)
 {
     parent::paintCaseEnd($test_name);
     $this->timer->stop();
 }
开发者ID:altesien,项目名称:FinalProject,代码行数:5,代码来源:SimpleTestResultFormatter.php

示例8: paintCaseEnd

 /**
  * @param string $testName
  */
 public function paintCaseEnd($testName)
 {
     parent::paintCaseEnd($testName);
     $this->xmlWriter->endTestSuite();
 }
开发者ID:kumatch,项目名称:stagehand-testrunner,代码行数:8,代码来源:JUnitXMLReporter.php

示例9: paintCaseEnd

 public function paintCaseEnd($testName)
 {
     parent::paintCaseEnd($testName);
     echo '                </table>', "\n";
     echo '            <br clear="all" />', "\n";
     echo '        </td>', "\n";
     echo '    </tr>', "\n";
     echo '</table>', "\n";
 }
开发者ID:PublicityPort,项目名称:OpenCATS,代码行数:9,代码来源:CATSTestReporter.php

示例10: paintCaseEnd

 function paintCaseEnd($test_name)
 {
     print $this->_getIndent();
     print "</" . $this->_namespace . "case>\n";
     parent::paintCaseEnd($test_name);
 }
开发者ID:BackupTheBerlios,项目名称:phpbase-svn,代码行数:6,代码来源:xml.php


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