<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Translation\Tests; use PHPUnit\Framework\TestCase; use Psr\Log\LoggerInterface; use Symfony\Component\Translation\LoggingTranslator; use Symfony\Component\Translation\Translator; class LoggingTranslatorTest extends TestCase { public function testTransWithNoTranslationIsLogged() { $logger = $this->createMock(LoggerInterface::class); $logger->expects($this->exactly(1)) ->method('warning') ->with('Translation not found.') ; $translator = new Translator('ar'); $loggableTranslator = new LoggingTranslator($translator, $logger); $loggableTranslator->trans('bar'); } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Catalogue | Folder | 0755 |
|
|
Command | Folder | 0755 |
|
|
DataCollector | Folder | 0755 |
|
|
DependencyInjection | Folder | 0755 |
|
|
Dumper | Folder | 0755 |
|
|
Exception | Folder | 0755 |
|
|
Extractor | Folder | 0755 |
|
|
Formatter | Folder | 0755 |
|
|
Loader | Folder | 0755 |
|
|
Provider | Folder | 0755 |
|
|
Util | Folder | 0755 |
|
|
Writer | Folder | 0755 |
|
|
fixtures | Folder | 0755 |
|
|
DataCollectorTranslatorTest.php | File | 3.29 KB | 0644 |
|
IdentityTranslatorTest.php | File | 985 B | 0644 |
|
LocaleSwitcherTest.php | File | 3.11 KB | 0644 |
|
LoggingTranslatorTest.php | File | 953 B | 0644 |
|
MessageCatalogueTest.php | File | 10.64 KB | 0644 |
|
PseudoLocalizationTranslatorTest.php | File | 4.94 KB | 0644 |
|
TranslatableTest.php | File | 2.98 KB | 0644 |
|
TranslatorBagTest.php | File | 3.28 KB | 0644 |
|
TranslatorCacheTest.php | File | 12.88 KB | 0644 |
|
TranslatorTest.php | File | 21.8 KB | 0644 |
|