paintMethodStart() public method

Paints the start of a test method.
public paintMethodStart ( string $test_name )
$test_name string Name of test that is starting.
Exemplo n.º 1
0
 function paintMethodStart($test_name)
 {
     parent::paintMethodStart($test_name);
     print $this->_getIndent();
     print "<" . $this->_namespace . "test>\n";
     print $this->_getIndent(1);
     print "<" . $this->_namespace . "name>" . $this->toParsedXml($test_name) . "</" . $this->_namespace . "name>\n";
 }
Exemplo n.º 2
0
 /**
  *    Signals the appropriate start event on the
  *    listener.
  *    @param SimpleReporter $listener    Target for events.
  *    @access public
  */
 function paintStart(&$listener)
 {
     $listener->paintMethodStart($this->getName());
 }
Exemplo n.º 3
0
 /**
  * acceptor for start of test method node
  */
 public function paintMethodStart($message)
 {
     parent::paintMethodStart($message);
     $node = new TreemapNode('Method', $message);
     $this->_stack->push($node);
 }
 /**
  * Paints the beginning of a test method being run.  This is used
  * to start/resume the code coverage tool.
  *
  * @param string $method The method name being run.
  * @return void
  */
 function paintMethodStart($method)
 {
     parent::paintMethodStart($method);
     if (!empty($this->params['codeCoverage'])) {
         CodeCoverageManager::start();
     }
 }
 /**
  * @param string $testName
  */
 public function paintMethodStart($testName)
 {
     $this->caseIsArtificial = false;
     if (!$this->caseStarted) {
         $this->paintCaseStart(\SimpleTest::getContext()->getTest()->getLabel());
         $this->caseIsArtificial = true;
     }
     parent::paintMethodStart($testName);
     $this->junitXMLWriter->startTestCase($testName, \SimpleTest::getContext()->getTest());
     $this->methodStartTime = microtime(true);
     $this->assertionCount = 0;
     $this->reportedFailure = false;
     $this->methodStarted = true;
 }
Exemplo n.º 6
0
 /**
  *    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();
 }
 function paintMethodStart($test_name)
 {
     parent::paintMethodStart($test_name);
     $this->currentTest = $test_name;
 }
Exemplo n.º 8
0
 /**
  *    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();
 }
 /**
  * @param string $testName
  */
 public function paintMethodStart($testName)
 {
     parent::paintMethodStart($testName);
     $this->xmlWriter->startTestCase($testName, SimpleTest::getContext()->getTest());
     $this->methodStartTime = microtime(true);
     $this->assertionCount = 0;
 }
 public function paintMethodStart($method)
 {
     parent::paintMethodStart($method);
     /* this one is PHP 5.2+
     		$this->method_status = array_fill_keys(array_keys($this->method_status), 0); // reset method status
     		*/
     $this->method_status = array_combine(array_keys($this->method_status), array_fill(0, sizeof($this->method_status), array()));
     // reset method status
     ob_start();
     $this->start_time = microtime(true);
     $this->start_memory = memory_get_usage();
 }
Exemplo n.º 11
0
 /**
  *    Paints the start of a test method.
  *    @param string $test_name   Name of test that is starting.
  *    @access public
  */
 public function paintMethodStart($test_name)
 {
     parent::paintMethodStart($test_name);
     //echo '<h3>' . $test_name . '</h3>';
     flush();
 }
Exemplo n.º 12
0
 /**
  * acceptor for start of test method node
  */
 function paintMethodStart($message)
 {
     parent::paintMethodStart($message);
     $node = new TreemapNode("Method", $message);
     $this->stack->push($node);
 }