* * 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 */ interface Teardown { /** * Returns true if fixtures have been handled successfully. * * @return bool */ public function isSuccessful(); /** * Checks if tear down has produced any output. * * @return bool */ public function hasOutput(); }