Files
roundcubemail/tests/Framework/ImapCacheTest.php
2024-06-05 07:46:51 +02:00

22 lines
430 B
PHP

<?php
namespace Roundcube\Tests\Framework;
use PHPUnit\Framework\TestCase;
/**
* Test class to test rcube_imap_cache class
*/
class ImapCacheTest extends TestCase
{
/**
* Class constructor
*/
public function test_class()
{
$object = new \rcube_imap_cache(new \rcube_db('test'), null, null, null);
$this->assertInstanceOf(\rcube_imap_cache::class, $object, 'Class constructor');
}
}