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.

20 lines
364 B

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