PHP Класс SimpleExpectation, simpletest

Also includes various helper methods.
Показать файл Открыть проект Примеры использования класса

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

Свойство Тип Описание
$dumper

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

Метод Описание
__construct ( string $message = '%s' ) Creates a dumper for displaying values and sets the test message.
isExpectation ( mixed $expectation ) : boolean Test to see if a value is an expectation object. A useful utility method.
overlayMessage ( mixed $compare, SimpleDumper $dumper ) : string Overlays the generated message onto the stored user message.
test ( mixed $compare ) : boolean Tests the expectation. True if correct.
testMessage ( mixed $compare ) : string Returns a human readable test message.

Защищенные методы

Метод Описание
getDumper ( ) : SimpleDumper Accessor for the dumper.

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

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

Creates a dumper for displaying values and sets the test message.
public __construct ( string $message = '%s' )
$message string Customised message on failure.

getDumper() защищенный Метод

Accessor for the dumper.
protected getDumper ( ) : SimpleDumper
Результат SimpleDumper Current value dumper.

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

Test to see if a value is an expectation object. A useful utility method.
public static isExpectation ( mixed $expectation ) : boolean
$expectation mixed Hopefully an Expectation class.
Результат boolean True if descended from this class.

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

An additional message can be interjected.
public overlayMessage ( mixed $compare, SimpleDumper $dumper ) : string
$compare mixed Comparison value.
$dumper SimpleDumper For formatting the results.
Результат string Description of success or failure.

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

Tests the expectation. True if correct.
public test ( mixed $compare ) : boolean
$compare mixed Comparison value.
Результат boolean True if correct.

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

Returns a human readable test message.
public testMessage ( mixed $compare ) : string
$compare mixed Comparison value.
Результат string Description of success or failure.

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

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

protected $dumper