Aleksander Machniak
2016-05-22 0344b168276f80189e2254c75a762aff5b517b6b
commit | author | age
5f8ada 1 <?php
AM 2
3 /**
4  * Test class to test rcube_content_filter class
5  *
6  * @package Tests
7  */
8 class Framework_ContentFilter extends PHPUnit_Framework_TestCase
9 {
10
11     /**
12      * Class constructor
13      */
14     function test_class()
15     {
16         $object = new rcube_content_filter();
17
18         $this->assertInstanceOf('rcube_content_filter', $object, "Class constructor");
19     }
20 }