Files
roundcubemail/tests/Framework/ImapCache.php
2014-09-12 14:37:51 +02:00

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");
}
}