Skip to content
Snippets Groups Projects
Commit f789a4e7 authored by Kumiko Ono's avatar Kumiko Ono Committed by Yas Naoi
Browse files

Issue #3285702 by kumikoono, yas: Add a BDD test directory for VMware module

parent f4bab7f6
Branches
Tags
3 merge requests!1759Issue #3356778: Release 5.1.1,!1679Issue #3349074: Fix the OpenStack Project create and edit form in SPA that "Member" cannot be saved due to a validation error,!1607Issue #3343582: Add the function to preview OpenStack stack in the SPA
...@@ -46,7 +46,8 @@ ...@@ -46,7 +46,8 @@
"Drupal\\Tests\\cloud\\": "tests/src/", "Drupal\\Tests\\cloud\\": "tests/src/",
"Drupal\\Tests\\aws_cloud\\": "modules/cloud_service_providers/aws_cloud/tests/src/", "Drupal\\Tests\\aws_cloud\\": "modules/cloud_service_providers/aws_cloud/tests/src/",
"Drupal\\Tests\\k8s\\": "modules/cloud_service_providers/k8s/tests/src/", "Drupal\\Tests\\k8s\\": "modules/cloud_service_providers/k8s/tests/src/",
"Drupal\\Tests\\openstack\\": "modules/cloud_service_providers/openstack/tests/src/" "Drupal\\Tests\\openstack\\": "modules/cloud_service_providers/openstack/tests/src/",
"Drupal\\Tests\\vmware\\": "modules/cloud_service_providers/vmware/tests/src/"
} }
} }
} }
imports:
- ../../../../../../../cloud/tests/src/Behat/behat.yml
default:
suites:
default:
contexts:
- Drupal\Tests\vmware\Behat\features\bootstrap\FeatureContext
- Drupal\Tests\cloud\Behat\features\bootstrap\FeatureContext
- Drupal\DrupalExtension\Context\DrupalContext
- Drupal\DrupalExtension\Context\MinkContext
- Drupal\DrupalExtension\Context\MessageContext
- Drupal\DrupalExtension\Context\DrushContext
- Drupal\DrupalExtension\Context\MarkupContext
- Drupal\DrupalExtension\Context\RandomContext
- Drupal\DrupalExtension\Context\BatchContext
<?php
namespace Drupal\Tests\vmware\Behat\features\bootstrap;
use Drupal\DrupalExtension\Context\RawDrupalContext;
/**
* Defines application features from the specific context.
*/
class FeatureContext extends RawDrupalContext {
/**
* Initializes context.
*
* Every scenario gets its own context instance.
* You can also pass arbitrary arguments to the
* context constructor through behat.yml.
*/
public function __construct() {
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment