32 lines
778 B
PHP
32 lines
778 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Tests\Cachet\Events\ComponentGroup;
|
|
|
|
use CachetHQ\Cachet\Events\ComponentGroup\ComponentGroupWasRemovedEvent;
|
|
use CachetHQ\Cachet\Models\ComponentGroup;
|
|
|
|
class ComponentGroupWasRemovedEventTest extends AbstractComponentGroupEventTestCase
|
|
{
|
|
protected function objectHasHandlers()
|
|
{
|
|
return false;
|
|
}
|
|
|
|
protected function getObjectAndParams()
|
|
{
|
|
$params = ['group' => new ComponentGroup()];
|
|
$object = new ComponentGroupWasRemovedEvent($params['group']);
|
|
|
|
return compact('params', 'object');
|
|
}
|
|
}
|