X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FEnvironment%2FHandler%2FEnvironmentHandler.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FEnvironment%2FHandler%2FEnvironmentHandler.php;h=0000000000000000000000000000000000000000;hp=f2b6b98207ddc0f0c0537777d90572c824586ee3;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/behat/behat/src/Behat/Testwork/Environment/Handler/EnvironmentHandler.php b/vendor/behat/behat/src/Behat/Testwork/Environment/Handler/EnvironmentHandler.php deleted file mode 100644 index f2b6b9820..000000000 --- a/vendor/behat/behat/src/Behat/Testwork/Environment/Handler/EnvironmentHandler.php +++ /dev/null @@ -1,63 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Behat\Testwork\Environment\Handler; - -use Behat\Testwork\Environment\Environment; -use Behat\Testwork\Environment\EnvironmentManager; -use Behat\Testwork\Suite\Suite; - -/** - * Handles test environment building and isolation. - * - * @see EnvironmentManager - * - * @author Konstantin Kudryashov - */ -interface EnvironmentHandler -{ - /** - * Checks if handler supports provided suite. - * - * @param Suite $suite - * - * @return Boolean - */ - public function supportsSuite(Suite $suite); - - /** - * Builds environment object based on provided suite. - * - * @param Suite $suite - * - * @return Environment - */ - public function buildEnvironment(Suite $suite); - - /** - * Checks if handler supports provided environment. - * - * @param Environment $environment - * @param mixed $testSubject - * - * @return Boolean - */ - public function supportsEnvironmentAndSubject(Environment $environment, $testSubject = null); - - /** - * Isolates provided environment. - * - * @param Environment $environment - * @param mixed $testSubject - * - * @return Environment - */ - public function isolateEnvironment(Environment $environment, $testSubject = null); -}