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_user class
|
|
*
|
|
* @package Tests
|
|
*/
|
|
class Framework_User extends PHPUnit_Framework_TestCase
|
|
{
|
|
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
function test_class()
|
|
{
|
|
$user = new rcube_user;
|
|
|
|
$this->assertInstanceOf('rcube_user', $user, "Class constructor");
|
|
}
|
|
}
|