Files
roundcubemail/tests/Framework/Contacts.php
2014-02-09 17:39:27 +01:00

21 lines
355 B
PHP

<?php
/**
* Test class to test rcube_contacts class
*
* @package Tests
*/
class Framework_Contacts extends PHPUnit_Framework_TestCase
{
/**
* Class constructor
*/
function test_class()
{
$object = new rcube_contacts(null, null);
$this->assertInstanceOf('rcube_contacts', $object, "Class constructor");
}
}