1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
<?php
namespace LaminasTest\Code\Generator;
use Laminas\Code\Generator\AbstractMemberGenerator;
use Laminas\Code\Generator\DocBlockGenerator;
use Laminas\Code\Generator\Exception\InvalidArgumentException;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use stdClass;
class AbstractMemberGeneratorTest extends TestCase
{
private MockObject&AbstractMemberGenerator $fixture;
protected function setUp(): void
{
$this->fixture = $this->getMockForAbstractClass(AbstractMemberGenerator::class);
}
public function testSetFlagsWithArray()
{
$this->fixture->setFlags(
[
AbstractMemberGenerator::FLAG_FINAL,
AbstractMemberGenerator::FLAG_PUBLIC,
]
);
self::assertSame(AbstractMemberGenerator::VISIBILITY_PUBLIC, $this->fixture->getVisibility());
self::assertSame(true, $this->fixture->isFinal());
}
public function testSetDocBlockThrowsExceptionWithInvalidType()
{
$this->expectException(InvalidArgumentException::class);
$this->fixture->setDocBlock(new stdClass());
}
public function testRemoveDocBlock(): void
{
$this->fixture->setDocBlock(new DocBlockGenerator());
$this->fixture->removeDocBlock();
$this->assertNull($this->fixture->getDocBlock());
}
public function testRemoveDocBlockIsIdempotent(): void
{
$this->fixture->removeDocBlock();
$this->fixture->removeDocBlock();
$this->assertNull($this->fixture->getDocBlock());
}
}
|