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.
23 lines
489 B
PHTML
23 lines
489 B
PHTML
11 years ago
|
<?php
|
||
|
|
||
|
class IdentitySelect_Plugin extends PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
|
||
|
function setUp()
|
||
|
{
|
||
|
include_once dirname(__FILE__) . '/../identity_select.php';
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Plugin object construction test
|
||
|
*/
|
||
|
function test_constructor()
|
||
|
{
|
||
|
$rcube = rcube::get_instance();
|
||
|
$plugin = new identity_select($rcube->api);
|
||
|
|
||
|
$this->assertInstanceOf('identity_select', $plugin);
|
||
|
$this->assertInstanceOf('rcube_plugin', $plugin);
|
||
|
}
|
||
|
}
|