PHPUnit::run()

PHPUnit::run() – runs a TestSuite and returns a TestResult object.

Synopsis

require_once 'PHPUnit.php';

object PHPUnit::run ( object $suite )

Description

Executes the given test suite

Parameter

  • object $suite - an object of PHPUnit_TestSuite

Return value

&PHPUnit_Result - A reference to a PHPUnit_Result.

Example

Using PHPUnit::run()

<?php
require_once "PHPUnit.php";
$suite  = New PHPUnit_TestSuite('Mathtest');
$result PHPUnit::run($suite);
echo 
$result->toHtml();
?>
A short tutorial about PHPUnit (Previous) A TestCase defines the fixture to run multiple tests. (Next)
Last updated: Sat, 16 Feb 2019 — Download Documentation
Do you think that something on this page is wrong? Please file a bug report.
View this page in:
  • English

User Notes:

There are no user contributed notes for this page.