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

21 lines
368 B
PHP

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