You are here

DoubleTestCase.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/_files/DoubleTestCase.php

File

vendor/phpunit/phpunit/tests/_files/DoubleTestCase.php
View source
<?php

class DoubleTestCase implements PHPUnit_Framework_Test {
  protected $testCase;
  public function __construct(PHPUnit_Framework_TestCase $testCase) {
    $this->testCase = $testCase;
  }
  public function count() {
    return 2;
  }
  public function run(PHPUnit_Framework_TestResult $result = null) {
    $result
      ->startTest($this);
    $this->testCase
      ->runBare();
    $this->testCase
      ->runBare();
    $result
      ->endTest($this, 0);
  }

}

Classes

Namesort descending Description
DoubleTestCase