Your IP : 216.73.216.220


Current Path : /home/rtorresani/www/setup/src/Magento/Setup/Test/Unit/Module/I18n/
Upload File :
Current File : //home/rtorresani/www/setup/src/Magento/Setup/Test/Unit/Module/I18n/LocaleTest.php

<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
declare(strict_types=1);

namespace Magento\Setup\Test\Unit\Module\I18n;

use Magento\Setup\Module\I18n\Locale;
use PHPUnit\Framework\TestCase;

class LocaleTest extends TestCase
{
    public function testWrongLocaleFormatException()
    {
        $this->expectException('InvalidArgumentException');
        $this->expectExceptionMessage('Target locale must match the following format: "aa_AA".');
        new Locale('wrong_locale');
    }

    public function testToStringConvert()
    {
        $locale = new Locale('de_DE');

        $this->assertEquals('de_DE', (string)$locale);
    }
}