X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FSuite%2FSuite.php;fp=vendor%2Fbehat%2Fbehat%2Fsrc%2FBehat%2FTestwork%2FSuite%2FSuite.php;h=0000000000000000000000000000000000000000;hp=782f8fd7c502f5c5f4c68bed0b6890571014c9f8;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/behat/behat/src/Behat/Testwork/Suite/Suite.php b/vendor/behat/behat/src/Behat/Testwork/Suite/Suite.php deleted file mode 100644 index 782f8fd7c..000000000 --- a/vendor/behat/behat/src/Behat/Testwork/Suite/Suite.php +++ /dev/null @@ -1,51 +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; - -/** - * Represents a Testwork suite. Suite is a collection of tests. - * - * @author Konstantin Kudryashov - */ -interface Suite -{ - /** - * Returns unique suite name. - * - * @return string - */ - public function getName(); - - /** - * Returns suite settings. - * - * @return array - */ - public function getSettings(); - - /** - * Checks if a setting with provided name exists. - * - * @param string $key - * - * @return Boolean - */ - public function hasSetting($key); - - /** - * Returns setting value by its key. - * - * @param string $key - * - * @return mixed - */ - public function getSetting($key); -}