Fix class name

This commit is contained in:
James Brooks
2015-12-26 09:33:39 +00:00
parent a369d4cb08
commit 0ba49b2a7c
@@ -0,0 +1,31 @@
<?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\ComponentGroupWasAddedEvent;
use CachetHQ\Cachet\Models\ComponentGroup;
class ComponentGroupWasAddedEventTest extends AbstractComponentGroupEventTestCase
{
protected function objectHasHandlers()
{
return false;
}
protected function getObjectAndParams()
{
$params = ['group' => new ComponentGroup()];
$object = new ComponentGroupWasAddedEvent($params['group']);
return compact('params', 'object');
}
}