You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
roundcubemail/tests/Framework/Imap.php

21 lines
327 B
PHP

<?php
/**
* Test class to test rcube_imap class
*
* @package Tests
*/
class Framework_Imap extends PHPUnit\Framework\TestCase
{
/**
* Class constructor
*/
function test_class()
{
$object = new rcube_imap;
$this->assertInstanceOf('rcube_imap', $object, "Class constructor");
}
}