Aleksander Machniak
2015-02-02 e8fc8d303a30658abd70419917a1373131802e28
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 }