for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Equip\Queue\Exception;
use Equip\Queue\TestCase;
class HandlerExceptionTest extends TestCase
{
public function testInvalidHandler()
$exception = HandlerException::invalidHandler('test');
$this->assertInstanceOf(HandlerException::class, $exception);
$this->assertSame('The handler for `test` is invalid.', $exception->getMessage());
}