Viewing File: /usr/local/cpanel/base/3rdparty/roundcube/plugins/kolab_addressbook/tests/LocalizationTest.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));
        }
    }
}
Back to Directory File Manager