* @license http://www.opensource.org/licenses/mit-license.php MIT * @link http://phpdoc.org */ namespace phpDocumentor\Reflection; use Mockery as m; use PHPUnit\Framework\TestCase; /** * @coversNothing */ final class DocblocksWithAnnotationsTest extends TestCase { /** * Call Mockery::close after each test. */ public function tearDown(): void { m::close(); } public function testDocblockWithAnnotations(): void { $docComment = <<create($docComment); $this->assertCount(3, $docblock->getTags()); } }