* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Behat\Testwork\Environment; use Behat\Testwork\Call\Callee; use Behat\Testwork\Suite\Suite; /** * Represents Testwork test environment. * * @author Konstantin Kudryashov */ interface Environment { /** * Returns environment suite. * * @return Suite */ public function getSuite(); /** * Creates callable using provided Callee. * * @param Callee $callee * * @return callable */ public function bindCallee(Callee $callee); }