roundcubemail-plugins-kolab/plugins/kolab_sso/tests/LocalizationTest.php
2022-12-01 12:42:11 +01:00

19 lines
424 B
PHP

<?php
class LocalizationTest extends PHPUnit\Framework\TestCase
{
/**
* Test all localization files for possible errors
*/
function test_localization()
{
// Any error/warning will fail the
foreach (glob(__DIR__ . '/../localization/*.inc') as $file) {
$labels = $messages = [];
include $file;
$this->assertTrue(!empty($labels));
}
}
}