You are here

public function JsonApiGeneratorTest::testGetPaths in OpenAPI 8

@covers ::getPaths

File

tests/src/Kernel/JsonApiGeneratorTest.php, line 48

Class

JsonApiGeneratorTest
@coversDefaultClass \Drupal\openapi\Plugin\openapi\OpenApiGenerator\JsonApiGenerator @group openapi

Namespace

Drupal\Tests\openapi\Kernel

Code

public function testGetPaths() {

  // Assert that the menu_link field is defined on the test entity type.
  $field_definitions = $this->container
    ->get('entity_field.manager')
    ->getFieldDefinitions('openapi_test_entity', 'test');
  $this
    ->assertArrayHasKey('menu_link', $field_definitions);

  // This should not cause any failures.
  $this->container
    ->get('plugin.manager.openapi.generator')
    ->createInstance('jsonapi')
    ->getPaths();
}