1<?php 2 3/** 4 * @requires extension nonExistingExtension 5 */ 6class 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} 13