for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ArpTest\DateTime\Factory;
use Arp\DateTime\Factory\DateIntervalFactoryFactory;
use Arp\Factory\FactoryInterface;
use PHPUnit\Framework\TestCase;
/**
* @covers \Arp\DateTime\Factory\DateIntervalFactoryFactory
*
* @author Alex Patterson <[email protected]>
* @package ArpTest\DateTime\Factory
*/
final class DateIntervalFactoryFactoryTest extends TestCase
{
* Assert that the factory implements FactoryInterface
public function testImplementsFactoryInterface(): void
$factory = new DateIntervalFactoryFactory();
$this->assertInstanceOf(FactoryInterface::class, $factory);
}