mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-04 15:24:02 +01:00
* align_single_space_minimal for assign * assign operators grouping is not supported by PHP CS Fixer * binary_operator_spaces = single_space * fix anonymous function on single line * align comments manually
22 lines
481 B
PHP
22 lines
481 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');
|
|
}
|
|
}
|