1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Tests\Metadata\Driver;
6
7use Doctrine\Common\Annotations\AnnotationReader;
8use JMS\Serializer\Metadata\Driver\AnnotationDriver;
9use JMS\Serializer\Naming\IdenticalPropertyNamingStrategy;
10
11class AnnotationDriverTest extends BaseDriverTest
12{
13    protected function getDriver()
14    {
15        return new AnnotationDriver(new AnnotationReader(), new IdenticalPropertyNamingStrategy(), null, $this->getExpressionEvaluator());
16    }
17
18    public function testCanDefineMetadataForInternalClass()
19    {
20        $this->markTestSkipped('Can not define annotation metadata for internal classes');
21    }
22}
23