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

class ThrowExceptionTestCase extends TestCase
{
    public function test()
    {
        throw new RuntimeException('A runtime error occurred');
    }
}