PHP Класс Mutagenesis\Adapter\AdapterAbstract

Показать файл Открыть проект Примеры использования класса

Защищенные свойства (Protected)

Свойство Тип Описание
$_output string Output from the test library in use

Открытые методы

Метод Описание
getOutput ( ) : string Get the test library output
runTests ( Base $runner, boolean $useStdout = false, boolean $firstRun = false, array $mutation = [], array $testCases = [] ) : array Runs the tests suite according to Runner set options and the execution order of test case (if any). It then returns an array of two elements.
setOutput ( string $output ) Set the test library output so it can be used later

Описание методов

getOutput() публичный Метод

Get the test library output
public getOutput ( ) : string
Результат string

runTests() абстрактный публичный Метод

First element is a boolean result value indicating if tests passed or not. Second element is an array containing the key "stdout" which stores the output from the last test run.
abstract public runTests ( Base $runner, boolean $useStdout = false, boolean $firstRun = false, array $mutation = [], array $testCases = [] ) : array
$runner Mutagenesis\Runner\Base
$useStdout boolean
$firstRun boolean
$mutation array
$testCases array
Результат array

setOutput() публичный Метод

Set the test library output so it can be used later
public setOutput ( string $output )
$output string

Описание свойств

$_output защищенное свойство

Output from the test library in use
protected string $_output
Результат string