mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 06:44:03 +01:00
21 lines
364 B
PHP
21 lines
364 B
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcube_imap_search class
|
|
*
|
|
* @package Tests
|
|
*/
|
|
class Framework_ImapSearch extends PHPUnit\Framework\TestCase
|
|
{
|
|
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
function test_class()
|
|
{
|
|
$object = new rcube_imap_search([], true);
|
|
|
|
$this->assertInstanceOf('rcube_imap_search', $object, "Class constructor");
|
|
}
|
|
}
|