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