40 lines
1.0 KiB
PHP
40 lines
1.0 KiB
PHP
<?php declare(strict_types=1);
|
|
|
|
/**
|
|
* @license Apache 2.0
|
|
*/
|
|
|
|
namespace OpenApi\Tests;
|
|
|
|
use OpenApi\Analyser;
|
|
|
|
class AnalyserTest extends OpenApiTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
Analyser::$defaultImports['swg'] = 'OpenApi\Annotations';
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
unset(Analyser::$defaultImports['swg']);
|
|
parent::tearDown();
|
|
}
|
|
|
|
public function testParseContents()
|
|
{
|
|
$annotations = $this->parseComment('@OA\Parameter(description="This is my parameter")');
|
|
$this->assertIsArray($annotations);
|
|
$parameter = $annotations[0];
|
|
$this->assertInstanceOf('OpenApi\Annotations\Parameter', $parameter);
|
|
$this->assertSame('This is my parameter', $parameter->description);
|
|
}
|
|
|
|
public function testDeprecatedAnnotationWarning()
|
|
{
|
|
$this->assertOpenApiLogEntryContains('The annotation @SWG\Definition() is deprecated.');
|
|
$this->parseComment('@SWG\Definition()');
|
|
}
|
|
}
|