ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
Monolog\Handler\SlackbotHandlerTest Class Reference
+ Inheritance diagram for Monolog\Handler\SlackbotHandlerTest:
+ Collaboration diagram for Monolog\Handler\SlackbotHandlerTest:

Public Member Functions

 testConstructorMinimal ()
 ::__construct More...
 
 testConstructorFull ()
 ::__construct More...
 

Additional Inherited Members

- Protected Member Functions inherited from Monolog\TestCase
 getRecord ($level=Logger::WARNING, $message='test', $context=array())
 
 getMultipleRecords ()
 
 getIdentityFormatter ()
 

Detailed Description

Member Function Documentation

◆ testConstructorFull()

Monolog\Handler\SlackbotHandlerTest::testConstructorFull ( )

::__construct

Definition at line 36 of file SlackbotHandlerTest.php.

References $handler, and Monolog\Logger\DEBUG.

37  {
38  $handler = new SlackbotHandler(
39  'test-team',
40  'test-token',
41  'test-channel',
43  false
44  );
45  $this->assertInstanceOf('Monolog\Handler\AbstractProcessingHandler', $handler);
46  }
const DEBUG
Detailed debug information.
Definition: Logger.php:33
$handler

◆ testConstructorMinimal()

Monolog\Handler\SlackbotHandlerTest::testConstructorMinimal ( )

::__construct

Definition at line 27 of file SlackbotHandlerTest.php.

References $handler.

28  {
29  $handler = new SlackbotHandler('test-team', 'test-token', 'test-channel');
30  $this->assertInstanceOf('Monolog\Handler\AbstractProcessingHandler', $handler);
31  }
$handler

The documentation for this class was generated from the following file: