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


PHP SimpleReporter::paintFail方法代码示例

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


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

示例1: paintFail

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

示例2: paintFail

 function paintFail($message)
 {
     parent::paintFail($message);
     $this->_response->addContent($this->getFailCount() . ") {$message}\n");
     $breadcrumb = $this->getTestList();
     array_shift($breadcrumb);
     $this->_response->addContent("\tin " . implode("\n\tin ", array_reverse($breadcrumb)));
     $this->_response->addContent("\n");
 }
开发者ID:CREASIG,项目名称:lizmap-web-client,代码行数:9,代码来源:jtextrespreporter.class.php

示例3: paintFail

 /**
  * Paint fail faildetail to STDERR.
  */
 function paintFail($message)
 {
     parent::paintFail($message);
     fwrite(STDERR, 'FAIL' . $this->faildetail_separator . $this->_paintTestFailDetail($message));
     if ($this->_failinfo) {
         fwrite(STDERR, '  additional info was: ' . $this->_failinfo . "\n");
         $this->_failinfo = '';
     }
 }
开发者ID:pyfun,项目名称:dokuwiki,代码行数:12,代码来源:cli_reporter.php

示例4: paintFail

 /**
  *    Paints the test failure as a stack trace.
  *    @param string $message    Failure message displayed in
  *                              the context of the other tests.
  *    @access public
  */
 function paintFail($message)
 {
     parent::paintFail($message);
     print "\n\t" . $this->getFailCount() . ") {$message}\n";
     $breadcrumb = $this->getTestList();
     array_shift($breadcrumb);
     print "\tin " . implode("\n\tin ", array_reverse($breadcrumb));
     print "\n";
 }
开发者ID:riaf,项目名称:pastit,代码行数:15,代码来源:TextDetailReporter.php

示例5: paintFail

 function paintFail($message)
 {
     parent::paintFail($message);
     $str = "<span class=\"fail\">Fail</span>: ";
     $breadcrumb = $this->getTestList();
     array_shift($breadcrumb);
     $str .= implode(" -&gt; ", $breadcrumb);
     $str .= " -&gt; " . $this->_htmlEntities($message) . "<br />\n";
     $this->_response->body->append('MAIN', $str);
 }
开发者ID:alienpham,项目名称:helenekling,代码行数:10,代码来源:jhtmlrespreporter.class.php

示例6: paintFail

 function paintFail($message)
 {
     SimpleReporter::paintFail($message);
     if ($this->getFailCount() <= 10) {
         print $this->test_name . ": {$message}\n";
         $breadcrumb = $this->getTestList();
         array_shift($breadcrumb);
         print "\tin " . implode("\n\tin ", array_reverse($breadcrumb));
         print "\n";
     }
 }
开发者ID:bufvc,项目名称:bufvc-potnia-framework,代码行数:11,代码来源:unit_test.inc.php

示例7: paintFail

 function paintFail($message)
 {
     parent::paintFail($message);
     $breadcrumb = $this->getTestList();
     array_shift($breadcrumb);
     $test = implode("->", $breadcrumb);
     $result["time"] = time();
     $result["status"] = "Failed";
     $result["test"] = $test;
     $result["message"] = $message;
     $this->results[] = $result;
 }
开发者ID:sebs,项目名称:simpletest,代码行数:12,代码来源:recorder.php

示例8: paintFail

 public function paintFail($message)
 {
     parent::paintFail($message);
     if (!$this->showFails) {
         return;
     }
     echo '        <tr class="fail">', "\n";
     echo '            <td nowrap="nowrap" valign="top"><span class="fail">Fail</span></td>', "\n";
     echo '            <td nowrap="nowrap" valign="top"><span class="test_case">', $this->_getTestCase(), '</span></td>', "\n";
     echo '            <td nowrap="nowrap" valign="top">', $this->_htmlEntities($message), '</td>', "\n";
     echo '        </tr>', "\n";
     flush();
 }
开发者ID:PublicityPort,项目名称:OpenCATS,代码行数:13,代码来源:CATSTestReporter.php

示例9: paintFail

 /**
  * Paint fail faildetail to STDERR.
  */
 function paintFail($message)
 {
     parent::paintFail($message);
     fwrite(STDERR, 'FAIL' . $this->faildetail_separator . $this->_paintTestFailDetail($message));
 }
开发者ID:kaz0636,项目名称:openflp,代码行数:8,代码来源:cli_reporter.php

示例10: paintFail

 function paintFail($message)
 {
     $this->addTest(false);
     //        echo 'fail: ' . $message . "\n";
     parent::paintFail($message);
 }
开发者ID:VUW-SIM-FIS,项目名称:emiemi,代码行数:6,代码来源:EarlReporter.php

示例11: paintFail

 /**
  * Paints the test failure with a breadcrumbs
  * trail of the nesting test suites below the
  * top level test.
  * @param string $message    Failure message displayed in
  *                           the context of the other tests.
  * @access public
  */
 function paintFail($message)
 {
     parent::paintFail($message);
     $this->test_stack[] = array('data' => array($this->_htmlEntities($message), 'FAIL'), 'class' => 'simpletest-fail');
     //$this->writeContent($this->_htmlEntities($message). ' FAIL', NULL, 'simpletest-fail');
 }
开发者ID:sdboyer,项目名称:sdboyer-test,代码行数:14,代码来源:drupal_reporter.php

示例12: paintFail

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

示例13: paintFail

 /**
  * Paint fail faildetail to STDERR.
  */
 function paintFail($message)
 {
     parent::paintFail($message);
     echo 'FAIL' . $this->faildetail_separator . $this->_paintTestFailDetail($message);
 }
开发者ID:xuezheng17,项目名称:pozvfs,代码行数:8,代码来源:epCliReporter.php

示例14: paintFail

 /**
  * @param string $message
  */
 public function paintFail($message)
 {
     parent::paintFail($message);
     $this->paintFailureOrError($message, 'failure');
     ++$this->assertionCount;
 }
开发者ID:kumatch,项目名称:stagehand-testrunner,代码行数:9,代码来源:JUnitXMLReporter.php

示例15: paintFail

 function paintFail($message)
 {
     SimpleReporter::paintFail($message);
     print '<div class="fail"><strong>Fail</strong>: ';
     $breadcrumb = $this->getTestList();
     array_shift($breadcrumb);
     print implode(" -&gt; ", $breadcrumb);
     print '<p class="message">' . $this->_htmlEntities($message) . "</p></div>\n";
 }
开发者ID:BackupTheBerlios,项目名称:wikirenderer,代码行数:9,代码来源:common.php


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