diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-02-09 17:15:55 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-02-09 18:21:32 +0100 |
commit | c8699f09eae6265e566a18c4597334d363aa4492 (patch) | |
tree | b3254d86199e3e30f9359e1e84ceaaf21e84186a /tests/Framework/SpellcheckEnchant.php | |
parent | d3abad28764286cb8a58e5c74173d3fd671c5ac0 (diff) |
Add dummy tests for rcube_spellcheck_* classes
Diffstat (limited to 'tests/Framework/SpellcheckEnchant.php')
-rw-r--r-- | tests/Framework/SpellcheckEnchant.php | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/Framework/SpellcheckEnchant.php b/tests/Framework/SpellcheckEnchant.php new file mode 100644 index 000000000..85393e76c --- /dev/null +++ b/tests/Framework/SpellcheckEnchant.php @@ -0,0 +1,21 @@ +<?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"); + } +} |