Current File : /home/itiffy/public_html/vendor/phpunit/phpunit/tests/_files/WasRun.php
<?php
use PHPUnit\Framework\TestCase;

class WasRun extends TestCase
{
    public $wasRun = false;

    protected function runTest()
    {
        $this->wasRun = true;
    }
}