File manager - Edit - /home/jardides/www/Cloud/3rdparty/guzzle/guzzle/tests/Guzzle/Tests/Log/ArrayLogAdapterTest.php
Back
<?php namespace Guzzle\Tests\Log; use Guzzle\Log\ArrayLogAdapter; class ArrayLogAdapterTest extends \Guzzle\Tests\GuzzleTestCase { public function testLog() { $adapter = new ArrayLogAdapter(); $adapter->log('test', \LOG_NOTICE, 'localhost'); $this->assertEquals(array(array('message' => 'test', 'priority' => \LOG_NOTICE, 'extras' => 'localhost')), $adapter->getLogs()); } public function testClearLog() { $adapter = new ArrayLogAdapter(); $adapter->log('test', \LOG_NOTICE, 'localhost'); $adapter->clearLogs(); $this->assertEquals(array(), $adapter->getLogs()); } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Generation time: 0.03 |
proxy
|
phpinfo
|
Settings