Definition at line 16 of file DynamoDbHandlerTest.php.
◆ setUp()
Monolog\Handler\DynamoDbHandlerTest::setUp |
( |
| ) |
|
Definition at line 20 of file DynamoDbHandlerTest.php.
References array.
22 if (!class_exists(
'Aws\DynamoDb\DynamoDbClient')) {
23 $this->markTestSkipped(
'aws/aws-sdk-php not installed');
26 $this->client = $this->getMockBuilder(
'Aws\DynamoDb\DynamoDbClient')
27 ->setMethods(
array(
'formatAttributes',
'__call'))
28 ->disableOriginalConstructor()->getMock();
Create styles array
The data for the language used.
◆ testConstruct()
Monolog\Handler\DynamoDbHandlerTest::testConstruct |
( |
| ) |
|
Definition at line 31 of file DynamoDbHandlerTest.php.
33 $this->assertInstanceOf(
'Monolog\Handler\DynamoDbHandler',
new DynamoDbHandler($this->client,
'foo'));
◆ testGetFormatter()
Monolog\Handler\DynamoDbHandlerTest::testGetFormatter |
( |
| ) |
|
◆ testHandle()
Monolog\Handler\DynamoDbHandlerTest::testHandle |
( |
| ) |
|
Definition at line 47 of file DynamoDbHandlerTest.php.
References $handler, array, and Monolog\TestCase\getRecord().
50 $formatter = $this->getMock(
'Monolog\Formatter\FormatterInterface');
51 $formatted =
array(
'foo' => 1,
'bar' => 2);
52 $handler =
new DynamoDbHandler($this->client,
'foo');
56 ->expects($this->once())
59 ->will($this->returnValue($formatted));
61 ->expects($this->once())
62 ->method(
'formatAttributes')
63 ->with($this->isType(
'array'))
64 ->will($this->returnValue($formatted));
66 ->expects($this->once())
getRecord($level=Logger::WARNING, $message='test', $context=array())
Create styles array
The data for the language used.
◆ testInterface()
Monolog\Handler\DynamoDbHandlerTest::testInterface |
( |
| ) |
|
Definition at line 36 of file DynamoDbHandlerTest.php.
38 $this->assertInstanceOf(
'Monolog\Handler\HandlerInterface',
new DynamoDbHandler($this->client,
'foo'));
◆ $client
Monolog\Handler\DynamoDbHandlerTest::$client |
|
private |
The documentation for this class was generated from the following file: