Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Tester / Setup / Teardown.php
diff --git a/vendor/behat/behat/src/Behat/Testwork/Tester/Setup/Teardown.php b/vendor/behat/behat/src/Behat/Testwork/Tester/Setup/Teardown.php
deleted file mode 100644 (file)
index fbb445b..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-/*
- * This file is part of the Behat.
- * (c) Konstantin Kudryashov <ever.zet@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Behat\Testwork\Tester\Setup;
-
-/**
- * Represents a result of test tearDown action.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
-interface Teardown
-{
-    /**
-     * Returns true if fixtures have been handled successfully.
-     *
-     * @return Boolean
-     */
-    public function isSuccessful();
-
-    /**
-     * Checks if tear down has produced any output.
-     *
-     * @return Boolean
-     */
-    public function hasOutput();
-}