Add dummy tests for rcube_spellcheck_* classes
4 files added
1 files modified
New file |
| | |
| | | <?php |
| | | |
| | | /** |
| | | * Test class to test rcube_spellcheck_atd class |
| | | * |
| | | * @package Tests |
| | | */ |
| | | class Framework_SpellcheckAtd extends PHPUnit_Framework_TestCase |
| | | { |
| | | |
| | | /** |
| | | * Class constructor |
| | | */ |
| | | function test_class() |
| | | { |
| | | $object = new rcube_spellcheck_atd(null, 'en'); |
| | | |
| | | $this->assertInstanceOf('rcube_spellcheck_atd', $object, "Class constructor"); |
| | | $this->assertInstanceOf('rcube_spellcheck_engine', $object, "Class constructor"); |
| | | } |
| | | } |
New file |
| | |
| | | <?php |
| | | |
| | | /** |
| | | * Test class to test rcube_spellcheck_enchant class |
| | | * |
| | | * @package Tests |
| | | */ |
| | | class Framework_SpellcheckEnchant extends PHPUnit_Framework_TestCase |
| | | { |
| | | |
| | | /** |
| | | * Class constructor |
| | | */ |
| | | function test_class() |
| | | { |
| | | $object = new rcube_spellcheck_enchant(null, 'en'); |
| | | |
| | | $this->assertInstanceOf('rcube_spellcheck_enchant', $object, "Class constructor"); |
| | | $this->assertInstanceOf('rcube_spellcheck_engine', $object, "Class constructor"); |
| | | } |
| | | } |
New file |
| | |
| | | <?php |
| | | |
| | | /** |
| | | * Test class to test rcube_spellcheck_googie class |
| | | * |
| | | * @package Tests |
| | | */ |
| | | class Framework_SpellcheckGoogie extends PHPUnit_Framework_TestCase |
| | | { |
| | | |
| | | /** |
| | | * Class constructor |
| | | */ |
| | | function test_class() |
| | | { |
| | | $object = new rcube_spellcheck_googie(null, 'en'); |
| | | |
| | | $this->assertInstanceOf('rcube_spellcheck_googie', $object, "Class constructor"); |
| | | $this->assertInstanceOf('rcube_spellcheck_engine', $object, "Class constructor"); |
| | | } |
| | | } |
New file |
| | |
| | | <?php |
| | | |
| | | /** |
| | | * Test class to test rcube_spellcheck_pspell class |
| | | * |
| | | * @package Tests |
| | | */ |
| | | class Framework_SpellcheckPspell extends PHPUnit_Framework_TestCase |
| | | { |
| | | |
| | | /** |
| | | * Class constructor |
| | | */ |
| | | function test_class() |
| | | { |
| | | $object = new rcube_spellcheck_pspell(null, 'en'); |
| | | |
| | | $this->assertInstanceOf('rcube_spellcheck_pspell', $object, "Class constructor"); |
| | | $this->assertInstanceOf('rcube_spellcheck_engine', $object, "Class constructor"); |
| | | } |
| | | } |
| | |
| | | <file>Framework/ResultSet.php</file> |
| | | <file>Framework/ResultThread.php</file> |
| | | <file>Framework/Smtp.php</file> |
| | | <file>Framework/SpellcheckAtd.php</file> |
| | | <file>Framework/SpellcheckEnchant.php</file> |
| | | <file>Framework/SpellcheckGoogie.php</file> |
| | | <file>Framework/SpellcheckPspell.php</file> |
| | | <file>Framework/Spellchecker.php</file> |
| | | <file>Framework/StringReplacer.php</file> |
| | | <file>Framework/User.php</file> |