Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Suite / Setup / SuiteSetup.php
1 <?php
2
3 /*
4  * This file is part of the Behat Testwork.
5  * (c) Konstantin Kudryashov <ever.zet@gmail.com>
6  *
7  * For the full copyright and license information, please view the LICENSE
8  * file that was distributed with this source code.
9  */
10
11 namespace Behat\Testwork\Suite\Setup;
12
13 use Behat\Testwork\Suite\Suite;
14 use Behat\Testwork\Suite\SuiteBootstrapper;
15
16 /**
17  * Sets up supported test suite.
18  *
19  * @see SuiteBootstrapper
20  *
21  * @author Konstantin Kudryashov <ever.zet@gmail.com>
22  */
23 interface SuiteSetup
24 {
25     /**
26      * Checks if setup supports provided suite.
27      *
28      * @param Suite $suite
29      *
30      * @return Boolean
31      */
32     public function supportsSuite(Suite $suite);
33
34     /**
35      * Sets up provided suite.
36      *
37      * @param Suite $suite
38      */
39     public function setupSuite(Suite $suite);
40 }