You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
355 B
PHTML
21 lines
355 B
PHTML
11 years ago
|
<?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");
|
||
|
}
|
||
|
}
|