mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-20 17:41:18 +01:00
23 lines
533 B
PHP
23 lines
533 B
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Framework;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test class to test rcube_spellcheck_googie class
|
|
*/
|
|
class SpellcheckerGoogieTest extends TestCase
|
|
{
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
public function test_class()
|
|
{
|
|
$object = new \rcube_spellchecker_googie(null, 'en');
|
|
|
|
$this->assertInstanceOf(\rcube_spellchecker_googie::class, $object, 'Class constructor');
|
|
$this->assertInstanceOf(\rcube_spellchecker_engine::class, $object, 'Class constructor');
|
|
}
|
|
}
|