Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / RequirementsClassBeforeClassHookTest.php
1 <?php
2
3 /**
4  * @requires extension nonExistingExtension
5  */
6 class RequirementsClassBeforeClassHookTest extends PHPUnit_Framework_TestCase
7 {
8     public static function setUpBeforeClass()
9     {
10         throw new Exception(__METHOD__ . ' should not be called because of class requirements.');
11     }
12 }