1 | <?php |
||
9 | class FileTranslatorTest extends TestCase |
||
10 | { |
||
11 | /** |
||
12 | * @covers OpCacheGUI\I18n\FileTranslator::__construct |
||
13 | */ |
||
14 | public function testConstructCorrectInstance() |
||
20 | |||
21 | /** |
||
22 | * @covers OpCacheGUI\I18n\FileTranslator::__construct |
||
23 | */ |
||
24 | public function testConstructThrowsUpOnUnsupportedLanguage() |
||
31 | |||
32 | /** |
||
33 | * @covers OpCacheGUI\I18n\FileTranslator::__construct |
||
34 | */ |
||
35 | public function testConstructThrowsUpOnInvalidTranslationFile() |
||
42 | |||
43 | /** |
||
44 | * @covers OpCacheGUI\I18n\FileTranslator::__construct |
||
45 | * @covers OpCacheGUI\I18n\FileTranslator::translate |
||
46 | */ |
||
47 | public function testTranslateWIthInvalidKey() |
||
53 | |||
54 | /** |
||
55 | * @covers OpCacheGUI\I18n\FileTranslator::__construct |
||
56 | * @covers OpCacheGUI\I18n\FileTranslator::translate |
||
57 | */ |
||
58 | public function testTranslateWIthValidKey() |
||
64 | } |
||
65 |