public function RoutesTest::notExpectedRoutes in JSON:API 8
Same name and namespace in other branches
- 8.2 tests/src/Unit/Routing/RoutesTest.php \Drupal\Tests\jsonapi\Unit\Routing\RoutesTest::notExpectedRoutes()
Lists routes which should have been created.
File
- tests/
src/ Unit/ Routing/ RoutesTest.php, line 182
Class
- RoutesTest
- @coversDefaultClass \Drupal\jsonapi\Routing\Routes @group jsonapi
Namespace
Drupal\Tests\jsonapi\Unit\RoutingCode
public function notExpectedRoutes() {
return [
[
'jsonapi.entity_type_2--bundle_2_1.individual',
],
[
'jsonapi.entity_type_2--bundle_2_1.collection',
],
[
'jsonapi.entity_type_2--bundle_2_1.related',
],
[
'jsonapi.entity_type_2--bundle_2_1.relationship',
],
];
}