mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 23:04:01 +01:00
Fixes composer dependencies: Package phpunit/phpunit-mock-objects is abandoned We cannot support v8 yet because of errors like: Declaration of MailFunc::setUp() must be compatible with PHPUnit\Framework\TestCase::setUp(): void It would require dropping PHP < 7.1 support.
22 lines
488 B
PHP
22 lines
488 B
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcube_spellcheck_googie class
|
|
*
|
|
* @package Tests
|
|
*/
|
|
class Framework_SpellcheckerGoogie extends PHPUnit\Framework\TestCase
|
|
{
|
|
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
function test_class()
|
|
{
|
|
$object = new rcube_spellchecker_googie(null, 'en');
|
|
|
|
$this->assertInstanceOf('rcube_spellchecker_googie', $object, "Class constructor");
|
|
$this->assertInstanceOf('rcube_spellchecker_engine', $object, "Class constructor");
|
|
}
|
|
}
|