for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ArpTest\LaminasEvent\Factory;
use Arp\LaminasEvent\Factory\EventDispatcherFactory;
use PHPUnit\Framework\Exception;
use PHPUnit\Framework\ExpectationFailedException;
use PHPUnit\Framework\TestCase;
/**
* @author Alex Patterson <[email protected]>
* @package ArpTest\LaminasEvent\Factory
*/
final class EventDispatcherFactoryTest extends TestCase
{
* Assert the factory is callable
*
* @throws Exception
* @throws ExpectationFailedException
public function testIsCallable(): void
$factory = new EventDispatcherFactory();
$this->assertIsCallable($factory);
}