Aleksander Machniak
2016-01-16 768e3e1b09f2d9eeb906854cc2b3348f101f771a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
 
/**
 * Test class to test rcube_db_sqlsrv class
 *
 * @package Tests
 */
class Framework_DBSqlsrv extends PHPUnit_Framework_TestCase
{
 
    /**
     * Class constructor
     */
    function test_class()
    {
        $object = new rcube_db_sqlsrv('test');
 
        $this->assertInstanceOf('rcube_db_sqlsrv', $object, "Class constructor");
    }
}