mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-25 01:06:56 +01:00
Added configurable Collected Recipients addressbook source (#4971) Added configurable Trusted Senders addressbook source (#5046) Added 'contact_exists' hook
22 lines
443 B
PHP
22 lines
443 B
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcube_addresses class
|
|
*
|
|
* @package Tests
|
|
*/
|
|
class Framework_Addresses extends PHPUnit\Framework\TestCase
|
|
{
|
|
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
function test_class()
|
|
{
|
|
$object = new rcube_addresses(1, null, 1);
|
|
|
|
$this->assertInstanceOf('rcube_addresses', $object, "Class constructor");
|
|
$this->assertInstanceOf('rcube_addressbook', $object, "Class constructor");
|
|
}
|
|
}
|