Started work on Events tests
This commit is contained in:
23
tests/Events/User/AbstractUserEventTestCase.php
Normal file
23
tests/Events/User/AbstractUserEventTestCase.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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\User;
|
||||
|
||||
use CachetHQ\Cachet\Events\User\UserEventInterface;
|
||||
use CachetHQ\Tests\Cachet\Events\AbstractEventTestCase;
|
||||
|
||||
class AbstractUserEventTestCase extends AbstractEventTestCase
|
||||
{
|
||||
protected function getEventInterfaces()
|
||||
{
|
||||
return [UserEventInterface::class];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user