1 | <?php |
||
7 | class TranslationRepositoryTest extends BaseTestCase |
||
8 | { |
||
9 | /** @var TranslationRepository */ |
||
10 | private $translationRepository; |
||
11 | |||
12 | public function setUp() |
||
17 | |||
18 | /** |
||
19 | * @group translation-repository |
||
20 | */ |
||
21 | public function testGetAllDomainsByLocale() |
||
28 | |||
29 | /** |
||
30 | * @group translation-repository |
||
31 | */ |
||
32 | public function testGetLastChangedTranslationDate() |
||
37 | |||
38 | /** |
||
39 | * @group translation-repository |
||
40 | */ |
||
41 | public function testGetTranslationsByLocalesAndDomains() |
||
47 | |||
48 | /** |
||
49 | * @group translation-repository |
||
50 | */ |
||
51 | public function testFindAllNotDisabled() |
||
57 | |||
58 | /** |
||
59 | * @group translation-repository |
||
60 | */ |
||
61 | public function testFindAllDeprecated() |
||
67 | } |
||
68 |