You are here

protected function ProductBehaviorSettingsFormTest::getEditBundleUrl in Rabbit Hole 8

Same name and namespace in other branches
  1. 2.x modules/rh_commerce/tests/src/Functional/ProductBehaviorSettingsFormTest.php \Drupal\Tests\rh_commerce\Functional\ProductBehaviorSettingsFormTest::getEditBundleUrl()

Returns URL of the "Edit" entity bundle page.

Parameters

string $bundle: Entity bundle id.

Return value

\Drupal\Core\Url URL object.

Overrides RabbitHoleBehaviorSettingsFormTestBase::getEditBundleUrl

File

modules/rh_commerce/tests/src/Functional/ProductBehaviorSettingsFormTest.php, line 125

Class

ProductBehaviorSettingsFormTest
Test the functionality of the rabbit hole form additions to Commerce Product.

Namespace

Drupal\Tests\rh_commerce\Functional

Code

protected function getEditBundleUrl($bundle) {
  return Url::fromRoute('entity.commerce_product_type.edit_form', [
    'commerce_product_type' => $bundle,
  ]);
}