Skip to content

Commit 993b7d0

Browse files
committed
unit testing for portuguese language
1 parent 86e9957 commit 993b7d0

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

tests/Language/AbstractTranslationTestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ abstract class AbstractTranslationTestCase extends TestCase
6565
// DutchTranslationTest::class => 'nl',
6666
// NorwegianTranslationTest::class => 'no',
6767
// PolishTranslationTest::class => 'pl',
68-
// PortugueseTranslationTest::class => 'pt',
68+
PortugueseTranslationTest::class => 'pt',
6969
BrazilianTranslationTest::class => 'pt-BR',
7070
// RussianTranslationTest::class => 'ru',
7171
// SinhalaTranslationTest::class => 'si',
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Tests\Language;
6+
7+
/**
8+
* @internal
9+
*/
10+
final class PortugueseTranslationTest extends AbstractTranslationTestCase
11+
{
12+
protected array $excludedLocaleKeyTranslations = [
13+
'Auth.login',
14+
];
15+
}

0 commit comments

Comments
 (0)