Your IP : 127.0.0.1


Current Path : /home/dev2.destoffenstraat.com/update/vendor/phpunit/phpunit/tests/_files/
Upload File :
Current File : /home/dev2.destoffenstraat.com/update/vendor/phpunit/phpunit/tests/_files/DoubleTestCase.php

<?php
use PHPUnit\Framework\TestResult;
use PHPUnit\Framework\TestCase;
use PHPUnit\Framework\Test;

class DoubleTestCase implements Test
{
    protected $testCase;

    public function __construct(TestCase $testCase)
    {
        $this->testCase = $testCase;
    }

    public function count()
    {
        return 2;
    }

    public function run(TestResult $result = null): TestResult
    {
        $result->startTest($this);

        $this->testCase->runBare();
        $this->testCase->runBare();

        $result->endTest($this, 0);

        return $result;
    }
}