ExceptionTest.php 197 B

12345678910111213
  1. <?php
  2. class ExceptionTest extends \PHPUnit\Framework\TestCase
  3. {
  4. /**
  5. * @group error
  6. */
  7. public function testError()
  8. {
  9. throw new \RuntimeException('Helllo!');
  10. }
  11. }