for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ArpTest\DateTime\Exception;
use Arp\DateTime\Exception\DateTimeException;
use PHPUnit\Framework\TestCase;
/**
* @covers \Arp\DateTime\Exception\DateTimeException
*/
final class DateTimeExceptionTest extends TestCase
{
* Assert that the exception class implements \Exception
public function testImplementsException(): void
$exception = new DateTimeException();
$this->assertInstanceOf(\Exception::class, $exception);
}