<?php
namespace App\Komma\Kms\QualityAssurance;
/**
* Runs unit / feature / browser tests for the shop
*
* Class TestsController
* @package App\Komma\Shop\
*/
interface TestsControllerInterface
{
public function phpunit();
public function dusk(string $filterOrGroup, string $filterOrGroupValue);
public function phpbench(string $filterOrGroup, string $filterOrGroupValue);
}