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 57 58 59 60 61 62
|
<?php
/**
* @see https://github.com/laminas/laminas-code for the canonical source repository
* @copyright https://github.com/laminas/laminas-code/blob/master/COPYRIGHT.md
* @license https://github.com/laminas/laminas-code/blob/master/LICENSE.md New BSD License
*/
namespace LaminasTest\Code\Generator;
use Laminas\Code\Generator\AbstractMemberGenerator;
use Laminas\Code\Generator\DocBlockGenerator;
use Laminas\Code\Generator\Exception\InvalidArgumentException;
use PHPUnit\Framework\TestCase;
use stdClass;
class AbstractMemberGeneratorTest extends TestCase
{
/** @var AbstractMemberGenerator */
private $fixture;
protected function setUp(): void
{
$this->fixture = $this->getMockForAbstractClass(AbstractMemberGenerator::class);
}
public function testSetFlagsWithArray()
{
$this->fixture->setFlags(
[
AbstractMemberGenerator::FLAG_FINAL,
AbstractMemberGenerator::FLAG_PUBLIC,
]
);
self::assertEquals(AbstractMemberGenerator::VISIBILITY_PUBLIC, $this->fixture->getVisibility());
self::assertEquals(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());
}
}
|