Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
16 | final class MessagesCatalogueTest extends FileLoaderTestAbstract { |
||
17 | protected function setUp(): void { |
||
24 | } |
||
25 | |||
26 | public function testGetFolders(): void { |
||
27 | $folders = $this->loader->folders; |
||
28 | Assert::type("array", $folders); |
||
29 | Assert::count(1, $folders); |
||
30 | Assert::same(__DIR__ . "/../../../_temp/catalogues", $folders[0]); |
||
31 | } |
||
32 | |||
33 | public function testCatalogueWithoutResources(): void { |
||
38 | } |
||
39 | } |
||
43 | ?> |
This function has been deprecated. The supplier of the function has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the function will be removed and what other function to use instead.