mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-04 15:24:02 +01:00
* fix Tests\Browser\TestCase imports * fix remaining imports * fix PHPUnit\Framework\TestCase imports * import GuzzleHttp\Client * fix remaining * "php_unit_method_casing" is not todo * fix "single_line_comment_spacing" * fix 2nd commit done using older fixer
21 lines
488 B
PHP
21 lines
488 B
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test class to test rcube_spellcheck_googie class
|
|
*/
|
|
class Framework_SpellcheckerGoogie extends TestCase
|
|
{
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
public 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');
|
|
}
|
|
}
|