\PHPUnit_Extensions_RepeatedTest

A Decorator that runs a test repeatedly.

Synopsis

class PHPUnit_Extensions_RepeatedTest extends PHPUnit_Extensions_TestDecorator {
  • // Inherited members from PHPUnit_Extensions_TestDecorator
  • protected  $test;
  • // methods
  • public void __construct()
  • public integer count()
  • public PHPUnit_Framework_TestResult run()
  • // Inherited methods from PHPUnit_Extensions_TestDecorator
  • public void __construct()
  • public string toString()
  • public void basicRun()
  • public integer count()
  • protected PHPUnit_Framework_TestResult createResult()
  • public PHPUnit_Framework_Test getTest()
  • public PHPUnit_Framework_TestResult run()
}

Hierarchy

Violations

Checkstyle

Line Column Severity Message
97 20 error Only one argument is allowed per line in a multi-line function call

Members

protected

Methods

public

  • __construct()
  • count() — Counts the number of test cases that will be run by this test.
  • run() — Runs the decorated test and collects the result in a TestResult.

Inherited from PHPUnit_Extensions_TestDecorator

protected

public

  • basicRun() — Runs the test and collects the result in a TestResult.
  • count() — Counts the number of test cases that will be run by this test.
  • getTest() — Returns the test to be run.
  • run() — Runs the decorated test and collects the result in a TestResult.
  • toString() — Returns a string representation of the test.

Inherited from PHPUnit_Framework_Assert

public

History