RoundCube Webmail
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
488 B

  1. <?php
  2. /**
  3. * Test class to test rcube_spellcheck_googie class
  4. *
  5. * @package Tests
  6. */
  7. class Framework_SpellcheckerGoogie extends PHPUnit\Framework\TestCase
  8. {
  9. /**
  10. * Class constructor
  11. */
  12. function test_class()
  13. {
  14. $object = new rcube_spellchecker_googie(null, 'en');
  15. $this->assertInstanceOf('rcube_spellchecker_googie', $object, "Class constructor");
  16. $this->assertInstanceOf('rcube_spellchecker_engine', $object, "Class constructor");
  17. }
  18. }