當前位置: 首頁>>代碼示例>>PHP>>正文


PHP HtmlReporter::paintFail方法代碼示例

本文整理匯總了PHP中HtmlReporter::paintFail方法的典型用法代碼示例。如果您正苦於以下問題:PHP HtmlReporter::paintFail方法的具體用法?PHP HtmlReporter::paintFail怎麽用?PHP HtmlReporter::paintFail使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在HtmlReporter的用法示例。


在下文中一共展示了HtmlReporter::paintFail方法的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: paintFail

 function paintFail($message)
 {
     ob_start();
     parent::paintFail($message);
     ob_get_clean();
     print "<div class='box' style='margin:auto;width:95%;margin-bottom:20px;'>\n";
     print "<span class=\"fail\">Fail</span>: ";
     $breadcrumb = $this->getTestList();
     array_shift($breadcrumb);
     $breadcrumb[count($breadcrumb) - 1] = str_replace(array('test_', '_'), array('', ' '), $breadcrumb[count($breadcrumb) - 1]);
     print implode("->", $breadcrumb) . '<br>';
     print $this->htmlEntities($message) . "\n";
     print "</div>\n";
 }
開發者ID:nvoyx,項目名稱:nvoyx,代碼行數:14,代碼來源:nvreporter.php

示例2: paintFail

 function paintFail($message)
 {
     $this->paintHeader(" " . $_SESSION['test']);
     parent::paintFail($message);
     if (isset($_SESSION['mod1']) && isset($_SESSION['mod2'])) {
         $_SESSION['mod1']->writeAsHtmlTable();
         $_SESSION['mod2']->writeAsHtmlTable();
     }
     $this->paintFooter($_SESSION['test']);
     print "<hr><br>";
     $_SESSION['fails']++;
     if (LOG) {
         $file = fopen("testlog.log", "a");
         fputs($file, "\r\n" . $_SESSION['test'] . ' fails' . "\r\n");
         fclose($file);
     }
 }
開發者ID:VUW-SIM-FIS,項目名稱:emiemi,代碼行數:17,代碼來源:show_passes.php

示例3: paintFail

 function paintFail($message)
 {
     static $header = FALSE;
     if (!$header) {
         $this->newPaintHeader();
         $header = TRUE;
     }
     parent::paintFail($message);
 }
開發者ID:mfavetti,項目名稱:LimeSurvey,代碼行數:9,代碼來源:simpletester.php

示例4: paintFail

 function paintFail($message)
 {
     parent::paintFail($message);
 }
開發者ID:justinlyon,項目名稱:scc,代碼行數:4,代碼來源:ProgressReporter.php

示例5: paintFail

 function paintFail($message)
 {
     $message = str_replace(TESTCASESFOLDER, '', $message);
     parent::paintFail($message);
 }
開發者ID:googlecode-mirror,項目名稱:bulldoc,代碼行數:5,代碼來源:showpass_reporter.php

示例6: paintFail

 /**
  * Paint fail.
  *
  * @access public
  * @param  string $message
  * @return void
  */
 public function paintFail($message)
 {
     parent::paintFail($message);
     print "<span class=\"fail\">Fail</span>: ";
     $breadcrumb = $this->getTestList();
     array_shift($breadcrumb);
     print implode(" -&gt; ", $breadcrumb);
     print " -&gt; " . $this->htmlEntities($message) . "<br />\n";
 }
開發者ID:nexcra,項目名稱:cb5,代碼行數:16,代碼來源:AbstractTest.php


注:本文中的HtmlReporter::paintFail方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。