Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 17125 программистов и 1834 робота. Сейчас ищут 1574 программиста ...
PHPUnit::run()
Вернуться к: PHPUnit
PHPUnit::run()
PHPUnit::run() – runs a TestSuite and returns a TestResult object.
Synopsis
require_once 'PHPUnit.php';
object PHPUnit::run ( object $suite )
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();
?>
Вернуться к: PHPUnit