You are here

ThrowExceptionTestCase.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/phpunit/phpunit/tests/_files/ThrowExceptionTestCase.php

File

vendor/phpunit/phpunit/tests/_files/ThrowExceptionTestCase.php
View source
<?php

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

}

Classes