Thomas Bruederli
2013-02-01 c5a5f989a9bf91927e6bb627f9f789800ce02fad
commit | author | age
5f8ada 1 <?php
AM 2
3 /**
4  * Test class to test rcube_smtp class
5  *
6  * @package Tests
7  */
8 class Framework_Smtp extends PHPUnit_Framework_TestCase
9 {
10
11     /**
12      * Class constructor
13      */
14     function test_class()
15     {
16         $object = new rcube_smtp;
17
18         $this->assertInstanceOf('rcube_smtp', $object, "Class constructor");
19     }
20 }