mirror of
https://github.com/jbcr/core.git
synced 2026-03-30 04:42:25 +02:00
16 lines
249 B
PHP
16 lines
249 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Context;
|
|
|
|
use Behat\MinkExtension\Context\MinkContext;
|
|
|
|
/**
|
|
* Defines application features from the specific context.
|
|
*/
|
|
class CommonContext extends MinkContext
|
|
{
|
|
use ApiContext;
|
|
use WebContext;
|
|
} |