| 1234567891011121314151617181920212223242526 |
- <?php declare(strict_types=1);
- /**
- * @license Apache 2.0
- */
- namespace OpenApiTests;
- class AnalyserTest extends OpenApiTestCase
- {
- 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->countExceptions = 1;
- $this->assertOpenApiLogEntryStartsWith('The annotation @SWG\Definition() is deprecated.');
- $this->parseComment('@SWG\Definition()');
- }
- }
|