mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-02-25 12:01:20 +01:00
22 lines
403 B
PHP
22 lines
403 B
PHP
<?php
|
|
|
|
namespace Roundcube\Tests\Framework;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Test class to test rcube_imap_search class
|
|
*/
|
|
class ImapSearchTest extends TestCase
|
|
{
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
public function test_class()
|
|
{
|
|
$object = new \rcube_imap_search([], true);
|
|
|
|
$this->assertInstanceOf(\rcube_imap_search::class, $object, 'Class constructor');
|
|
}
|
|
}
|