public function Framework_TestListenerTest::testStartStop

File

drupal/core/vendor/phpunit/phpunit/Tests/Framework/TestListenerTest.php, line 137

Class

Framework_TestListenerTest
@package PHPUnit @author Sebastian Bergmann <sebastian@phpunit.de> @copyright 2001-2013 Sebastian Bergmann <sebastian@phpunit.de> @license http://www.opensource.org/licenses/BSD-3-Clause The BSD 3-Clause License @link …

Code

public function testStartStop() {
  $test = new Success();
  $test
    ->run($this->result);
  $this
    ->assertEquals(1, $this->startCount);
  $this
    ->assertEquals(1, $this->endCount);
}