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/Image.php

21 lines
339 B
PHP

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