%PDF- %PDF-
Direktori : /var/www/html/shaban/duassis/api/vendor/zircote/swagger-php/tests/ |
Current File : //var/www/html/shaban/duassis/api/vendor/zircote/swagger-php/tests/AnalyserTest.php |
<?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()'); } }