![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/framework/Translate/Test/Unit/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\Framework\Translate\Test\Unit; use Magento\Framework\Translate\AbstractAdapter; use Magento\Framework\Translate\Adapter; use PHPUnit\Framework\TestCase; class AdapterAbstractTest extends TestCase { /** * @var AbstractAdapter */ protected $_model = null; protected function setUp(): void { $this->_model = $this->getMockBuilder(AbstractAdapter::class) ->getMockForAbstractClass(); } /** * Magento translate adapter should always return false to be used correctly be Zend Validate */ public function testIsTranslated() { $this->assertFalse($this->_model->isTranslated('string')); } /** * Test set locale do nothing */ public function testSetLocale() { $this->assertInstanceOf( AbstractAdapter::class, $this->_model->setLocale('en_US') ); } /** * Check that abstract method is implemented */ public function testToString() { $this->assertEquals(Adapter::class, $this->_model->toString()); } }