X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;ds=sidebyside;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FSuite%2FSetup%2FSuiteSetup.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FSuite%2FSetup%2FSuiteSetup.php;h=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=61656243416d518ec34b74a45061c75d268eb06a;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0;p=yaffs-website diff --git a/vendor/behat/behat/src/Behat/Testwork/Suite/Setup/SuiteSetup.php b/vendor/behat/behat/src/Behat/Testwork/Suite/Setup/SuiteSetup.php deleted file mode 100644 index 616562434..000000000 --- a/vendor/behat/behat/src/Behat/Testwork/Suite/Setup/SuiteSetup.php +++ /dev/null @@ -1,40 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Behat\Testwork\Suite\Setup; - -use Behat\Testwork\Suite\Suite; -use Behat\Testwork\Suite\SuiteBootstrapper; - -/** - * Sets up supported test suite. - * - * @see SuiteBootstrapper - * - * @author Konstantin Kudryashov - */ -interface SuiteSetup -{ - /** - * Checks if setup supports provided suite. - * - * @param Suite $suite - * - * @return Boolean - */ - public function supportsSuite(Suite $suite); - - /** - * Sets up provided suite. - * - * @param Suite $suite - */ - public function setupSuite(Suite $suite); -}