mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-04 07:14:02 +01:00
* Move action handling code to rcmail class * Add rcmail_action class * Add action aliases * Get rid of $OUTPUT global * Move some methods from rcmail to rcmail_action * PHP8 compat. fixes * Add framework for testing actions * Fix obvious code mistakes
20 lines
342 B
PHP
20 lines
342 B
PHP
<?php
|
|
|
|
/**
|
|
* Test class to test rcmail_action_mail_group_expand
|
|
*
|
|
* @package Tests
|
|
*/
|
|
class Actions_Mail_GroupExpand extends ActionTestCase
|
|
{
|
|
/**
|
|
* Class constructor
|
|
*/
|
|
function test_class()
|
|
{
|
|
$object = new rcmail_action_mail_group_expand;
|
|
|
|
$this->assertInstanceOf('rcmail_action', $object);
|
|
}
|
|
}
|