LoggerChannelFactoryTest.php

Same filename and directory in other branches
  1. 9 core/tests/Drupal/Tests/Core/Logger/LoggerChannelFactoryTest.php
  2. 8.9.x core/tests/Drupal/Tests/Core/Logger/LoggerChannelFactoryTest.php
  3. 10 core/tests/Drupal/Tests/Core/Logger/LoggerChannelFactoryTest.php

Namespace

Drupal\Tests\Core\Logger

File

core/tests/Drupal/Tests/Core/Logger/LoggerChannelFactoryTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\Core\Logger;

use Drupal\Core\Logger\LoggerChannelFactory;
use Drupal\Core\Session\AccountInterface;
use Drupal\Tests\UnitTestCase;
use Symfony\Component\HttpFoundation\RequestStack;

/**
 * @coversDefaultClass \Drupal\Core\Logger\LoggerChannelFactory
 * @group Logger
 */
class LoggerChannelFactoryTest extends UnitTestCase {
    
    /**
     * Tests LoggerChannelFactory::get().
     *
     * @covers ::get
     */
    public function testGet() : void {
        $factory = new LoggerChannelFactory($this->createMock(RequestStack::class), $this->createMock(AccountInterface::class));
        // Ensure that when called with the same argument, always the same instance
        // will be returned.
        $this->assertSame($factory->get('test'), $factory->get('test'));
    }

}
class LoggerChannelWithoutConstructor extends LoggerChannelFactory {
    public function __construct() {
    }

}

Classes

Title Deprecated Summary
LoggerChannelFactoryTest @coversDefaultClass \Drupal\Core\Logger\LoggerChannelFactory @group Logger
LoggerChannelWithoutConstructor

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.