mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 14:54:01 +01:00
21 lines
323 B
PHP
21 lines
323 B
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcube class
|
|
*
|
|
* @package Tests
|
|
*/
|
|
class Framework_Rcube extends PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
function test_class()
|
|
{
|
|
$object = rcube::get_instance();
|
|
|
|
$this->assertInstanceOf('rcube', $object, "Class singleton");
|
|
}
|
|
}
|