1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
<?php
namespace Roundcube\Tests\Framework;
use PHPUnit\Framework\TestCase;
/**
* Test class to test rcube_spellcheck_atd class
*/
class Framework_SpellcheckerAtd extends TestCase
{
/**
* Class constructor
*/
function test_class()
{
$object = new \rcube_spellchecker_atd(null, 'en');
$this->assertInstanceOf(\rcube_spellchecker_atd::class, $object, "Class constructor");
$this->assertInstanceOf(\rcube_spellchecker_engine::class, $object, "Class constructor");
}
}
|