Files
roundcubemail/tests/Framework/SpellcheckerGoogieTest.php
2024-06-05 07:46:51 +02:00

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');
}
}