Files
roundcubemail/tests/Framework/Addresses.php
Michael Voříšek 54f4aa33f9 Fix CS - imports (#9316)
* fix Tests\Browser\TestCase imports

* fix remaining imports

* fix PHPUnit\Framework\TestCase imports

* import GuzzleHttp\Client

* fix remaining

* "php_unit_method_casing" is not todo

* fix "single_line_comment_spacing"

* fix 2nd commit done using older fixer
2024-01-21 19:13:31 +01:00

22 lines
485 B
PHP

<?php
use PHPUnit\Framework\TestCase;
/**
* Test class to test rcube_addresses class
*/
class Framework_Addresses extends TestCase
{
/**
* Class constructor
*/
public function test_class()
{
$db = new rcube_db('test');
$object = new rcube_addresses($db, null, 1);
$this->assertInstanceOf('rcube_addresses', $object, 'Class constructor');
$this->assertInstanceOf('rcube_addressbook', $object, 'Class constructor');
}
}