LoggerChannelFactoryTest.php
Same filename in other branches
Namespace
Drupal\Tests\Core\LoggerFile
-
core/
tests/ Drupal/ Tests/ Core/ Logger/ LoggerChannelFactoryTest.php
View source
<?php
namespace Drupal\Tests\Core\Logger;
use Drupal\Core\Logger\LoggerChannelFactory;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\Core\Logger\LoggerChannelFactory
* @group Logger
*/
class LoggerChannelFactoryTest extends UnitTestCase {
/**
* Tests LoggerChannelFactory::get().
*
* @covers ::get
*/
public function testGet() {
$factory = new LoggerChannelFactory();
$factory->setContainer($this->createMock('Symfony\\Component\\DependencyInjection\\ContainerInterface'));
// Ensure that when called with the same argument, always the same instance
// will be returned.
$this->assertSame($factory->get('test'), $factory->get('test'));
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
LoggerChannelFactoryTest | @coversDefaultClass \Drupal\Core\Logger\LoggerChannelFactory @group Logger |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.