for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace ProxyManagerTest\ProxyGenerator\LazyLoadingGhost\PropertyGenerator;
use Laminas\Code\Generator\PropertyGenerator;
use ProxyManager\ProxyGenerator\LazyLoadingGhost\PropertyGenerator\InitializerProperty;
use ProxyManagerTest\ProxyGenerator\PropertyGenerator\AbstractUniquePropertyNameTest;
/**
* Tests for {@see \ProxyManager\ProxyGenerator\LazyLoadingGhost\PropertyGenerator\InitializerProperty}
*
* @covers \ProxyManager\ProxyGenerator\LazyLoadingGhost\PropertyGenerator\InitializerProperty
* @group Coverage
*/
final class InitializerPropertyTest extends AbstractUniquePropertyNameTest
{
* {@inheritDoc}
protected function createProperty() : PropertyGenerator
return new InitializerProperty();
}