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


PHP SimpleReporter::paintCaseStart方法代碼示例

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


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

示例1: paintCaseStart

 /**
  *    Paints the start of a test case. Will also paint
  *    the page header and footer if this is the
  *    first test. Will stash the size if the first
  *    start.
  *    @param string $test_name   Name of test that is starting.
  *    @access public
  */
 public function paintCaseStart($test_name)
 {
     parent::paintCaseStart($test_name);
     echo '<h2>' . $test_name . '</h2>';
     echo '<div class="test-reports">';
     flush();
 }
開發者ID:ivantcholakov,項目名稱:Bonfire,代碼行數:15,代碼來源: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: paintCaseStart

 function paintCaseStart($test_name)
 {
     parent::paintCaseStart($test_name);
     print $this->_getIndent();
     print "<" . $this->_namespace . "case>\n";
     print $this->_getIndent(1);
     print "<" . $this->_namespace . "name>" . $this->toParsedXml($test_name) . "</" . $this->_namespace . "name>\n";
 }
開發者ID:BackupTheBerlios,項目名稱:phpbase-svn,代碼行數:8,代碼來源:xml.php

示例4: run

 /**
  *    Uses reflection to run every method within itself
  *    starting with the string "test" unless a method
  *    is specified.
  *    @param SimpleReporter $reporter    Current test reporter.
  *    @access public
  */
 function run(&$reporter)
 {
     $reporter->paintCaseStart($this->getLabel());
     $this->_runner =& $this->_createRunner($reporter);
     $this->_runner->run();
     $reporter->paintCaseEnd($this->getLabel());
     return $reporter->getStatus();
 }
開發者ID:radicaldesigns,項目名稱:amp,代碼行數:15,代碼來源:simple_test.php

示例5: paintCaseStart

 function paintCaseStart($test_name)
 {
     parent::paintCaseStart($test_name);
     $this->runCount = 0;
     $this->failureCount = 0;
     $this->errorCount = 0;
     $this->timer = new Timer();
     $this->timer->start();
 }
開發者ID:altesien,項目名稱:FinalProject,代碼行數:9,代碼來源:SimpleTestResultFormatter.php

示例6: paintCaseStart

 public function paintCaseStart($testName)
 {
     parent::paintCaseStart($testName);
     echo '<table cellspacing="0" cellpadding="0">', "\n";
     echo '    <tr>', "\n";
     echo '        <td>', "\n";
     echo '            <p class="test_heading">', $testName, '</p>', "\n";
     echo '            <table cellspacing="0" class="test_output">', "\n";
     echo '                <tr>', "\n";
     echo '                    <th>Result</td>', "\n";
     echo '                    <th nowrap="nowrap">Test Case</td>', "\n";
     echo '                    <th>Message</td>', "\n";
     echo '                </tr>', "\n";
     flush();
 }
開發者ID:PublicityPort,項目名稱:OpenCATS,代碼行數:15,代碼來源:CATSTestReporter.php

示例7: paintCaseStart

 /**
  *  テストケース開始
  *
  *  @access public
  *  @param string   $test_name  テスト名稱
  */
 function paintCaseStart($test_name)
 {
     parent::paintCaseStart($test_name);
     $this->report[] = array('type' => 'CaseStart', 'test_name' => $test_name);
 }
開發者ID:hiroki-namekawa,項目名稱:test-upr,代碼行數:11,代碼來源:Ethna_UnitTestReporter.php

示例8: run

 /**
  *    Uses reflection to run every method within itself
  *    starting with the string "test".
  *    @param SimpleReporter $reporter    Current test reporter.
  *    @access public
  */
 function run(&$reporter)
 {
     $reporter->paintCaseStart($this->getLabel());
     $methods = get_class_methods(get_class($this));
     foreach ($methods as $method) {
         if (!$this->_isTest($method)) {
             continue;
         }
         if ($this->_isConstructor($method)) {
             continue;
         }
         $reporter->paintMethodStart($method);
         $this->_reporter =& $this->_createRunner($reporter);
         $this->_reporter->invoke($this, $method);
         $reporter->paintMethodEnd($method);
     }
     $reporter->paintCaseEnd($this->getLabel());
     return $reporter->getStatus();
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:25,代碼來源:simple_test.php

示例9: run

 /**
  *    Uses reflection to run every method within itself
  *    starting with the string "test".
  *    @param SimpleReporter $reporter    Current test reporter.
  *    @access public
  */
 function run(&$reporter)
 {
     $reporter->paintCaseStart($this->getLabel());
     $methods = get_class_methods(get_class($this));
     foreach ($methods as $method) {
         if (strtolower(substr($method, 0, 4)) != "test") {
             continue;
         }
         if (is_a($this, strtolower($method))) {
             continue;
         }
         $reporter->paintMethodStart($method);
         $this->_reporter =& $this->_createRunner($reporter);
         $this->_reporter->invoke($this, $method);
         $reporter->paintMethodEnd($method);
     }
     $reporter->paintCaseEnd($this->getLabel());
     return $reporter->getStatus();
 }
開發者ID:BackupTheBerlios,項目名稱:limb-svn,代碼行數:25,代碼來源:simple_test.php

示例10: paintCaseStart

 function paintCaseStart($test_name)
 {
     print "\n {$test_name}\n";
     return parent::paintCaseStart($test_name);
 }
開發者ID:riaf,項目名稱:pastit,代碼行數:5,代碼來源:TextDetailReporter.php

示例11: paintCaseStart

 public function paintCaseStart($test_case)
 {
     parent::paintCaseStart($test_case);
     $this->results[] = array('name' => $test_case, 'methods' => array());
 }
開發者ID:lubosdz,項目名稱:simpletest-visual-gui,代碼行數:5,代碼來源:SimpleHtmlReporter.php

示例12: run

 /**
  *    Uses reflection to run every method within itself
  *    starting with the string "test" unless a method
  *    is specified.
  *    @param SimpleReporter $reporter    Current test reporter.
  *    @access public
  */
 function run(&$reporter)
 {
     SimpleTest::setCurrent($this);
     $reporter->paintCaseStart($this->getLabel());
     $this->_runner = $this->_createRunner($reporter);
     $this->_runner->run();
     $this->_runner = false;
     $reporter->paintCaseEnd($this->getLabel());
     return $reporter->getStatus();
 }
開發者ID:emma5021,項目名稱:toba,代碼行數:17,代碼來源:test_case.php

示例13: paintCaseStart

 function paintCaseStart($test_name)
 {
     $this->buffer_case = "\n {$test_name}\n";
     $this->buffer_case_displayed = false;
     return parent::paintCaseStart($test_name);
 }
開發者ID:nterray,項目名稱:tuleap,代碼行數:6,代碼來源:TestsPluginReporter.class.php

示例14: paintCaseStart

 /**
  * @param string $testName
  */
 public function paintCaseStart($testName)
 {
     parent::paintCaseStart($testName);
     $this->junitXMLWriter->startTestSuite($testName, $this->suite->countTestsInTestCase(\SimpleTest::getContext()->getTest()));
     $this->caseStarted = true;
 }
開發者ID:rsky,項目名稱:stagehand-testrunner,代碼行數:9,代碼來源:JUnitXMLReporter.php

示例15: paintCaseStart

 /**
  * @param string $testName
  */
 public function paintCaseStart($testName)
 {
     parent::paintCaseStart($testName);
     $this->xmlWriter->startTestSuite($testName, $this->suite->countTestsInTestCase(SimpleTest::getContext()->getTest()));
 }
開發者ID:kumatch,項目名稱:stagehand-testrunner,代碼行數:8,代碼來源:JUnitXMLReporter.php


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