Started work on Events tests

This commit is contained in:
James Brooks
2015-09-14 08:47:51 +01:00
parent b0ec13fa13
commit 687b46389d
7 changed files with 193 additions and 2 deletions

View 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];
}
}