Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/phpunit/phpunit/src/Framework/TestListenerDefaultImplementation.php
<?php
/*
 * This file is part of PHPUnit.
 *
 * (c) Sebastian Bergmann <sebastian@phpunit.de>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */
namespace PHPUnit\Framework;

trait
TestListenerDefaultImplementation
{
    public function
addError(Test $test, \Exception $e, $time)
    {
    }

    public function
addWarning(Test $test, Warning $e, $time)
    {
    }

    public function
addFailure(Test $test, AssertionFailedError $e, $time)
    {
    }

    public function
addIncompleteTest(Test $test, \Exception $e, $time)
    {
    }

    public function
addRiskyTest(Test $test, \Exception $e, $time)
    {
    }

    public function
addSkippedTest(Test $test, \Exception $e, $time)
    {
    }

    public function
startTestSuite(TestSuite $suite)
    {
    }

    public function
endTestSuite(TestSuite $suite)
    {
    }

    public function
startTest(Test $test)
    {
    }

    public function
endTest(Test $test, $time)
    {
    }
}