File "RequirementsClassBeforeClassHookTest.php"
Full Path: /www/wwwroot/shphe-en.com/smsapi/api_sdk/vendor/phpunit/phpunit/tests/_files/RequirementsClassBeforeClassHookTest.php
File size: 297 bytes
MIME-type: --
Charset: utf-8
<?php
/**
* @requires extension nonExistingExtension
*/
class RequirementsClassBeforeClassHookTest extends PHPUnit_Framework_TestCase
{
public static function setUpBeforeClass()
{
throw new Exception(__METHOD__ . ' should not be called because of class requirements.');
}
}