for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Facile\ZFLinkHeadersModule\Exception;
use PHPUnit\Framework\TestCase;
class RuntimeExceptionTest extends TestCase
{
public function testImplementsInterface()
$exception = new RuntimeException();
$this->assertInstanceOf(ExceptionInterface::class, $exception);
$this->assertInstanceOf(\RuntimeException::class, $exception);
}