Aleksander Machniak
2016-05-22 0344b168276f80189e2254c75a762aff5b517b6b
commit | author | age
c8699f 1 <?php
AM 2
3 /**
4  * Test class to test rcube_spellcheck_atd class
5  *
6  * @package Tests
7  */
8 class Framework_SpellcheckAtd extends PHPUnit_Framework_TestCase
9 {
10
11     /**
12      * Class constructor
13      */
14     function test_class()
15     {
16         $object = new rcube_spellcheck_atd(null, 'en');
17
18         $this->assertInstanceOf('rcube_spellcheck_atd', $object, "Class constructor");
19         $this->assertInstanceOf('rcube_spellcheck_engine', $object, "Class constructor");
20     }
21 }