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.
23 lines
390 B
PHTML
23 lines
390 B
PHTML
9 years ago
|
<?php
|
||
|
|
||
|
/**
|
||
|
* Test class to test rcube_db_oracle class
|
||
|
*
|
||
|
* @package Tests
|
||
|
* @group database
|
||
|
* @group oracle
|
||
|
*/
|
||
|
class Framework_DBOracle extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Class constructor
|
||
|
*/
|
||
|
function test_class()
|
||
|
{
|
||
|
$object = new rcube_db_oracle('test');
|
||
|
|
||
|
$this->assertInstanceOf('rcube_db_oracle', $object, "Class constructor");
|
||
|
}
|
||
|
}
|