PHP Class Cascade\Tests\Config\Loader\ClassLoader\FormatterLoaderTest

Author: Raphael Antonmattei ([email protected])
Inheritance: extends PHPUnit_Framework_TestCase
Show file Open project: theorchard/monolog-cascade

Public Methods

Method Description
handlerParamsProvider ( ) : array Data provider for testHandlers !\ Important note: just add values to this array if you need to test a newly added handler If one of your handlers calls more than one method you can add more than one entries
setUp ( ) Set up function
tearDown ( ) Tear down function
testHandlers ( string $class, string $optionName, mixed $optionValue, string $calledMethodName ) Test the extra option handlers
testHandlersExist ( ) Test that handlers exist

Private Methods

Method Description
doTestMethodCalledInHandler ( string $class, string $methodName, mixed $methodArg, Closure $closure ) Tests that calling the given Closure will trigger a method call with the given param in the given class
getHandler ( string $class, string $optionName ) : Closure Check if the handler exists for a given class and option Also checks that it a callable and return it

Method Details

handlerParamsProvider() public method

Data provider for testHandlers !\ Important note: just add values to this array if you need to test a newly added handler If one of your handlers calls more than one method you can add more than one entries
public handlerParamsProvider ( ) : array
return array of array of args for testHandlers

setUp() public method

Set up function
public setUp ( )

tearDown() public method

Tear down function
public tearDown ( )

testHandlers() public method

Test the extra option handlers
See also: doTestMethodCalledInHandler
public testHandlers ( string $class, string $optionName, mixed $optionValue, string $calledMethodName )
$class string Class name
$optionName string Option name
$optionValue mixed Option value
$calledMethodName string Expected called method name

testHandlersExist() public method

Test that handlers exist
public testHandlersExist ( )