mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 14:54:01 +01:00
21 lines
390 B
PHP
21 lines
390 B
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcube_imap_cache class
|
|
*
|
|
* @package Tests
|
|
*/
|
|
class Framework_ImapCache extends PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
function test_class()
|
|
{
|
|
$object = new rcube_imap_cache(new rcube_db('test'), null, null, null);
|
|
|
|
$this->assertInstanceOf('rcube_imap_cache', $object, "Class constructor");
|
|
}
|
|
}
|