Move event test fixtures to a subdirectory

This commit is contained in:
Dylan K. Taylor
2024-11-20 15:40:34 +00:00
parent 49bdaee930
commit 844ba0ff9f
11 changed files with 26 additions and 9 deletions

View File

@ -24,6 +24,12 @@ declare(strict_types=1);
namespace pocketmine\event;
use PHPUnit\Framework\TestCase;
use pocketmine\event\fixtures\TestAbstractAllowHandleEvent;
use pocketmine\event\fixtures\TestAbstractEvent;
use pocketmine\event\fixtures\TestConcreteEvent;
use pocketmine\event\fixtures\TestConcreteExtendsAbstractEvent;
use pocketmine\event\fixtures\TestConcreteExtendsAllowHandleEvent;
use pocketmine\event\fixtures\TestConcreteExtendsConcreteEvent;
class HandlerListManagerTest extends TestCase{